scc

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

0079-cond.c (80B)


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