AnkitWebLogic

Ans 6. Write a C program to check whether a Person is eligible to Vote or not 1

#include<stdio.h>
int main()
{
    int age;
    printf("Enter your age:");
    scanf("%d",&age);
    if(age >= 18)
        printf("You are eligible for vote");
    else
        printf("You are not eligible for vote");
    return 0;
}
Run 1
Enter your age:25
You are eligible for vote

Run 2
Enter your age:15
You are not eligible for vote