0257-main.c (159B)
1 int 2 f2(int c) 3 { 4 return c+2; 5 } 6 7 int 8 f1(int a) 9 { 10 return a+3; 11 } 12 13 int 14 main(void) 15 { 16 int h1 = 5, h2 = 3, h3; 17 18 h3 = f1(h1) + f2(h2); 19 if (h3 != 13) 20 return 1; 21 }
sccsimple c99 compiler | |
| git clone git://git.simple-cc.org/scc | |
| Log | Files | Refs | Submodules | README | LICENSE |