scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

0046-inits.c (141B)


      1 int x = 5;
      2 long y = 6;
      3 int *p = &x;
      4 
      5 int
      6 main()
      7 {
      8 	if (x != 5) 
      9 		return 1;
     10 	if (y != 6)
     11 		return 2;
     12 	if (*p != 5)
     13 		return 3;
     14 	return 0;
     15 }
     16