Skip to content
Snippets Groups Projects
Select Git revision
  • aeadb66c6d0dad0f3bff78acbb0c79ea05d061d4
  • master default protected
  • 2018ws
  • 2017ws
  • 2016ws
5 results

blink-7.c

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    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;
    }