3. (A) Write a program to enter a number from the user and display the month name. If number >13 then display invalid input using switch case.

3. (A) Write a program to enter a number from the user and display the month name. If number >13 then display invalid input using switch case.
Write a program to enter a number from the user and display the month name. If number >13 then display invalid input using switch case.
#include<stdio.h>
#include<conio.h>
void main()
{
int n;
clrscr();
printf("Month No:-> ");
scanf("%d",&n);
switch(n)
{
case 1:
printf("January\n");
break;
case 2:
printf("February\n");
break;
case 3:
printf("March\n");
break;
case 4:
printf("April\n");
break;
case 5:
printf("MAy\n");
break;
case 6:
printf("June\n");
break;
case 7:
printf("July\n");
break;
case 8:
printf("August\n");
break;
case 9:
printf("September\n");
break;
case 10:
printf("October\n");
break;
case 11:
printf("November\n");
break;
case 12:
printf("December\n");
break;
default:
printf("invalid Month number\nPlease try again ....\n");
break;
}
getch();
3. (A) Write a program to enter a number from the user and display the month name. If number >13 then display invalid input using switch case. 3. (A) Write a program to enter a number from the user and display the month name. If number >13 then display invalid input using switch case. Reviewed by admin on December 23, 2019 Rating: 5

No comments:

Powered by Blogger.