fork download
  1. #include <stdio.h>
  2. int main()
  3. {
  4. int test = 1;
  5. float fvalue = 3.111f;
  6. printf("%f",test ? fvalue : 0);
  7.  
  8. return 0;
  9. }
Success #stdin #stdout 0s 2248KB
stdin
Standard input is empty
stdout
3.111000