#include<stdio.h>
int main()
{
int age;
printf("ENTER THE AGE:\n");
scanf("%d",&age);
if(age>=18)
{
printf("THE CANDITATE IS ELIGIBLE FOR VOTING");
}
else
{
printf("THE CANDITATE IS NOT ELIGIBLE FOR VOTING");
}
 return 0;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: