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