fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. printf("29+29の計算をします\n");
  5.  
  6. int x;
  7. x=29+29;
  8.  
  9. printf("%d",x);
  10. return 0;
  11. }
  12.  
Success #stdin #stdout 0s 5280KB
stdin
Standard input is empty
stdout
29+29の計算をします
58