fork(3) download
  1. #include <stdio.h>
  2.  
  3. int main()
  4. {
  5. int age;
  6. //printf("Enter the age of child");
  7. scanf("%d",&age);
  8. if((age>=5) && (age < 6))
  9. {
  10. printf("Chid is eligible for admission");
  11. }
  12. return 0;
  13. }
  14.  
Success #stdin #stdout 0s 2296KB
stdin
5
stdout
Chid is eligible for admission