fork download
  1. #include <stdio.h>
  2.  
  3. int main(void)
  4. {
  5. int x, y;
  6.  
  7. printf("xの値は%dです。\n", x = 22);
  8. printf("yの値は%dです。\n", y = 33);
  9.  
  10. return 0;
  11. }
  12.  
  13.  
Success #stdin #stdout 0.01s 5288KB
stdin
747
487398
stdout
xの値は22です。
yの値は33です。