kit

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

6_5_39_float_arith.c (157B)


      1 /* Pure-`float` arithmetic — both operands stay at single precision. */
      2 int test_main(void) {
      3   float a = 6.0f;
      4   float b = 7.0f;
      5   return (int)(a * b);
      6 }