Skip to content
Snippets Groups Projects
Select Git revision
  • a691dd0feb04f13ece56450480fa97c9d4f2cd4d
  • main default protected
2 results

makefile

  • operators-3.c 123 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 3;
      printf ("Hello, world!\n"), a = 42;
      printf ("%d\n", a), return 0;
    }