Skip to content

rupambsws9/GitHub-Practice-

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 

Repository files navigation


# include < stdio.h>
int main() {
char status;
char gender;
int age;
printf("Enter Maritul Status(Married/Unmarried) and Gender(boy/girl): ");
scanf("%c %c",&status,&gender);
printf("Enter Age: ");
scanf("%d",&age);
if(((status=='M')||(status=='U'))&&(gender=='b')&&(age>=30)||(status=='U')&&(gender=='g')&&(age>=25)){
printf("You Are Eligible For Driving Job In This Company");
}else{
printf("You Are Not Eligible");
}
return 0;
}

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors