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