Skip to content
Snippets Groups Projects
Select Git revision
  • 08256e681ca958282c556749d6332bf473cf4251
  • master default
2 results

library-2.h

Blame
  • Forked from Peter Gerwinski / hp
    Source project has a limited visibility.
    side-effects-05.c 148 B
    #include <stdio.h>
    
    int main (void)
    {
      int a = 3;
      int b = 5;
      printf ("%d\n", a + b);
      printf ("%d\n", a);
      printf ("%d\n", b);
      return 0;
    }