fork download
  1. #include <stdio.h>
  2.  
  3. main()
  4. {
  5. int age;
  6. printf("How old are you ?");
  7. scanf("%d",&age);
  8. if(age > 60)
  9. {
  10. printf("you are old \n");
  11. }
  12. else
  13. {
  14. printf("you are young\n");
  15. }
  16. printf("Good bye!");
  17. }
Success #stdin #stdout 0s 5288KB
stdin
Standard input is empty
stdout
How old are you ?you are old 
Good bye!