scc

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

0245-comma.c (153B)


      1 int but, aclick;
      2 
      3 int
      4 main(void)
      5 {
      6 	int r;
      7 
      8 	aclick = 1;
      9 	but = 1;
     10 	r = 1;
     11 	if (aclick == 1 && but == 1)
     12 		r = ((aclick = 0) + 1 , aclick);
     13 	return r;
     14 }