fork download
  1. #include <stdio.h>
  2.  
  3. int x=111;
  4. int main(void) {
  5. int y=10;
  6.  
  7. printf("xは%d yは%d",x,y);
  8. return 0;
  9. }
  10.  
Success #stdin #stdout 0.01s 5280KB
stdin
Standard input is empty
stdout
xは111 yは10