fork download
  1. /* Helloプログラム */
  2.  
  3. #include <stdio.h>
  4.  
  5. main()
  6. {
  7. int i ;
  8. float a ;
  9.  
  10. i = 123456789 ;
  11.  
  12. a = i;
  13.  
  14. printf("%f\n", a);
  15.  
  16. a = a + 1.0;
  17.  
  18. printf("%f\n", a);
  19.  
  20. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
123456792.000000
123456792.000000