fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("%g\n", 310.0);
  5. printf("%g\n", 310.1);
  6. printf("%g\n", 310.12);
  7. }
  8.  
  9. //https://pt.stackoverflow.com/q/219039/101
Success #stdin #stdout 0s 4352KB
stdin
Standard input is empty
stdout
310
310.1
310.12