fork download
  1. #include <stdio.h>
  2.  
  3. int main() {
  4.  
  5. int age;
  6. printf("enter your age");
  7. scanf("%d", &age);
  8. printf("%d",age);
  9. return 0;
  10. }
  11.  
Success #stdin #stdout 0s 5276KB
stdin
Standard input is empty
stdout
enter your age32767