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; }