fork(1) download
  1. #include <stdio.h>
  2.  
  3. int main(void) {
  4. int age;
  5. printf("welcome to the age calculater");
  6. printf("\n please enter your age: ");
  7. scanf("%d",&age);
  8. if(age<13){
  9. printf("\n you are child");
  10.  
  11. }else if(age<20){
  12. printf("\n you are teenager");
  13.  
  14. }else if(age<60){
  15. printf("\n you are adult");
  16. }else{
  17. printf("\n your are senior");
  18. }
  19.  
  20. return 0;
  21. }
  22.  
Success #stdin #stdout 0s 5284KB
stdin
Standard input is empty
stdout
welcome to the age calculater
 please enter your age: 
 your are senior