Write a program to check whether the candidate age is greater than 17 or not,if yes display message Eligible for voting.
The program checks whether the candidate is eligible to vote or not. It does this by taking the input of the candidate’s age in years using the scanf() function and stores it in an integer variable age. Then the if statement is used to check whether the value stored in age is greater than 17. […]