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.  
  12. printf("%f\n" , a);
  13.  
  14. a =a+1.0;
  15.  
  16. printf("%f\n" ,a);
  17.  
  18. }
Success #stdin #stdout 0s 5316KB
stdin
Standard input is empty
stdout
123456792.000000
123456792.000000