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