Ticket #34491: test.c

File test.c, 122 bytes (added by seanfarley (Sean Farley), 12 years ago)

sample test.c

Line 
1#include <stdio.h>
2
3int main() {
4  int x=0;
5
6  x++;
7  printf("x = %d\n",x);
8  x=5;
9  printf("x = %d\n",x);
10
11  return 0;
12}