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