Voting Eligibility
Hii Doodes..
C Program on "Voting Eligibility".
Program:
#include<stdio.h>
{
int a;
clrscr();
printf("PLEASE ENTER YOUR AGE\n");
scanf("%d",&a);
if(a>18)
{
printf("YOU ARE ELIGIBLE TO VOTE\n");
}
else
{
printf("YOU ARE NOT ELIGIBLE TO VOTE\n");
}
getch();
}
Output:
Thank you Doodes...
See You All In My Next Post!!
Stay Tuned...
https://youtu.be/onX1W8Y8Nvw
Please share like And Subscribe our Youtube channel...
Always Spread love!!!
Ignore Hate...
C Program on "Voting Eligibility".
Program:
#include<stdio.h>
#include<conio.h>
void main(){
int a;
clrscr();
printf("PLEASE ENTER YOUR AGE\n");
scanf("%d",&a);
if(a>18)
{
printf("YOU ARE ELIGIBLE TO VOTE\n");
}
else
{
printf("YOU ARE NOT ELIGIBLE TO VOTE\n");
}
getch();
}
Output:
Thank you Doodes...
See You All In My Next Post!!
Stay Tuned...
https://youtu.be/onX1W8Y8Nvw
Please share like And Subscribe our Youtube channel...
Always Spread love!!!
Ignore Hate...
Comments
Post a Comment