Skip to content
Snippets Groups Projects
Select Git revision
  • 47fbe2beac25a805511f2dca459d67e1e6859c88
  • master default
2 results

statements-2.c

Blame
  • Forked from Peter Gerwinski / hp
    362 commits behind the upstream repository.
    statements-2.c 113 B
    #include <stdio.h>
    
    int main (void)
    {
      int x;
      x = printf ("%d\n", 2 + 2);
      printf ("%d\n", x);
      return 0;
    }