#include <stdio.h>

int main() {
    int x;
    printf("Enter the age of the candidate for voting rights: ");
    scanf("%d",&x);
    printf("%d\n",x);
    if (x>=18)
    {printf("The Candidate is Eligible for Voting");}
    else 
    {printf("The Candidate 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: