Home C Age Eligibility Age Eligibility personStudent 494 October 01, 2025 0 share Copy #include #include void main() { int age; printf("Enter your age: "); scanf("%d", &age); // take input from user if (age >= 18) { printf("You are eligible to vote.\n"); } else { printf("You are not yet eligible to vote.\n"); } getch(); // waits for a key press } Output Example Copy Enter your age: 20 You are eligible to vote. But Copy Enter your age: 15 You are not eligible to vote. Tags C Facebook Twitter Whatsapp Newer Older