#include<stdio.h>
main()
{
int choice;
printf("Enter your choice:");
scanf("%d",&choice);
switch(choice)
{
case 1:printf("one");break;
case 2:printf("two");break;
case 3:printf("Three");break;
default:printf("invalid key");
}
}
main()
{
int choice;
printf("Enter your choice:");
scanf("%d",&choice);
switch(choice)
{
case 1:printf("one");break;
case 2:printf("two");break;
case 3:printf("Three");break;
default:printf("invalid key");
}
}