Programming Examples

Write a program to count number of votes secured by A and B


Write a program to count number of votes secured by ‘A’ & ‘B’. Assume three voters are voting them. Also count the invalid votes

Solution

# include <stdio.h>
void main()
{
int a=0,b=0,o=0,i;
char v;
clrscr();
printf(“\tPress A or B\n”);
for(i=1;i<=3;i++)
{
 printf(“\n\nVoter no. %d”,i);
 printf(“Enter Vote :”);
 v=getche();
 v=toupper(v);
 if(v==‘A’)
 a++;
 else if(v==‘B’)
 b++;
 else
 o++;
}
printf(“\n\n Status of vote(s) \n”);
printf(“\nA secures %d vote(s).”,a);
printf(“\nB secures %d vote(s).”,b);
printf(“\nInvalid votes %d.”,o);
getch();
}
▶ RUN

Output/ Explanation:

OUTPUT:

Press A or B

Voter no. 1 Enter Vote :A

Voter no. 2 Enter Vote :A

Voter no. 3 Enter Vote :A

Status of vote(s)

A secures 3 vote(s).

B secures 0 vote(s).

Invalid votes 0.

Latest Current Affairs 2025 Online Exam Quiz for One day Exam Online Typing Test CCC Online Test Python Programming Tutorials Best Computer Training Institute in Prayagraj (Allahabad) Online MBA 2 years Online MCA Online BCA Best Website and Software Company in Allahabad