scc

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

0247-float.c (94B)


      1 double vec[] = {
      2 	-0.7,
      3 	+0.7,
      4 };
      5 
      6 int
      7 main(void)
      8 {
      9 	return vec[0] == 0.0 || vec[1] == 0.0;
     10 }