w3resource

C Exercises: Read month number and display month name

C Conditional Statement: Exercise-23 with Solution

Write a C program for reading any Month Number and displaying the Month name as a word.

Pictorial Presentation:

Read month number and display month name

Sample Solution:

C Code:

#include <stdio.h>
void main()
{
   int monno;
   printf("Input Month No : ");
   scanf("%d",&monno);
   switch(monno)
   {
	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;
      }
}

Sample Output:

Input Month No : 4                                                                                            
April  

Flowchart:

Flowchart: Read month number and display month name

C Programming Code Editor:

Improve this sample solution and post your code through Disqus.

Previous: Write a program in C to read any digit, display in the word.
Next: Write a program in C to read any Month Number in integer and display the number of days for this month.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.

C Programming: Tips of the Day

How to use __FILE__ macro shows full path?

Try

#include<string.h>

#define __FILENAME__ (strrchr(__FILE__, '/') ? strrchr(__FILE__, '/') + 1 : __FILE__)
For Windows use '\\' instead of '/'.

Ref: https://bit.ly/3mOf045

 





We are closing our Disqus commenting system for some maintenanace issues. You may write to us at reach[at]yahoo[dot]com or visit us at Facebook