kit

kit
git clone https://git.ryansepassi.com/git/kit.git
Log | Files | Refs | README

6_5_16_compound_fp_mul.c (129B)


      1 int test_main(void) {
      2   double x = 14.75;
      3   double y = 100.0;
      4   x *= y;
      5   if (x < 1474.5 || x > 1475.5) return 1;
      6   return 42;
      7 }