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