Statement of C Program: Write an Example of switch Statement on TV Programs :
#include<stdio.h>
#include<conio.h>
void main()
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");
{
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
Dance India Dance
Output 2:
Categories
1. Dance
2. Singing
3. Interesting
Enter your choice between 1 to 3:
6
Chota Bheem
0 Response to "C Program: Write an Example of switch Statement on TV Favorite Programs"
Post a Comment