int main() { int age; printf("Enter you age:"); scanf("%d", &age); if(age>=18) goto Vote; else goto NoVote;Vote: printf("you are eligible for voting"); exit(); NoVote: printf("you are not eligible to vote");exit();return 0; }
Subscribe to:
Post Comments
(
Atom
)
No comments :
Post a Comment