scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | 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 }