kit

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

6_5_47_ternary_arith_conv.c (89B)


      1 int test_main(void) {
      2   int c = 1;
      3   double r = c ? 1 : 2.5;
      4   return (int)(r + 41.0);
      5 }