Blogger templates

Pages

Thursday, 24 May 2012

C Program: Write an Example of switch Statement on TV Favorite Programs


Switch statement

Statement of C Program: Write an Example of switch Statement on TV Programs :

#include<stdio.h>
#include<conio.h>
void main()
{
int a ;
clrscr();
printf(" Categories\n ");
printf(" 1. Dance\n ");
printf(" 2. Singing\n");
printf(" 3. Interesting\n");
printf(" Enter your choice between 1 to 3:\n");
scanf("%d" ,&a);

switch(a)
{
case 1:
printf(" Dance India Dance\n");
break;
case 2:
printf(" Indian Idol\n");
break;
case 3:
printf(" MTV Roadies");
break;
default:
printf(" Chota Bheem\n ");
break;
}
getch();
}

Output 1:
Categories
1. Dance
2. Singing
3. Interesting
Enter your choice between 1 to 3:
1
Dance India Dance  



Output 2:
Categories
1. Dance
2. Singing
3. Interesting
Enter your choice between 1 to 3:
6
Chota Bheem

0 comments:

Post a Comment