fork download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int a,b,c;
  6.  
  7. a = 10;
  8. b = 20;
  9. c = a + b;
  10. printf("cの値は %d になります。\n",c);
  11. return(0);
  12. }
Success #stdin #stdout 0s 4168KB
stdin
Standard input is empty
stdout
cの値は 30 になります。