fork download
  1. #include <stdio.h>
  2. #include <stdlib.h>
  3. int main (void)
  4. {
  5. int age = 14;
  6.  
  7. printf("age=%d\n",age);
  8. age=age+87;
  9. printf("過了八十七年後,變成了%d",age);
  10. return 0;
  11.  
  12. }
Success #stdin #stdout 0.01s 5268KB
stdin
Standard input is empty
stdout
age=14
過了八十七年後,變成了101