Answer to Question #208879 in C for Prasanna

Question #208879

Write a C program to display the month of year using enumeration.


Input :

6


Output :

June


1
Expert's answer
2021-06-21T04:41:44-0400
#include<stdio.h>
enum Month{Jan, Feb, Mar, Apr, May, Jun, Jul, Aug, Sep, Oct, Nov, Dec};
int main()
{
int i;
printf("Input Month No : ");
scanf("%d",&i);
switch(i)
{
   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;
}
return 0;
}

Need a fast expert's response?

Submit order

and get a quick answer at the best price

for any assignment or question with DETAILED EXPLANATIONS!

Comments

No comments. Be the first!

Leave a comment

LATEST TUTORIALS
New on Blog
APPROVED BY CLIENTS