scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

0112-cond.c (104B)


      1 int
      2 main()
      3 {
      4 	int x = 0;
      5 	int y = 1;
      6 	if(x ? 1 : 0)
      7 		return 1;
      8 	if(y ? 0 : 1)
      9 		return 2;
     10 	return 0;
     11 }