Q:

C Program To Read Month Number And Display Month Name Using Switch Case

belongs to collection: Basic C Programming Examples

0

C Program To Read Month Number And Display Month Name Using Switch Case

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

Write a C Program To Read Month Number And Display Month Name Using Switch Case

Algorithm

  1. Program Start
  2. Declaration of variable
  3. Enter month number
  4. Assign the value in variable
  5. Pass number in switch() case
  6. Give answer according to value
  7. Program Stop

Flowchart

Program

//Write a C Program To Read Month Number And Display Month Name Using Switch Case

#include<stdio.h>

void main()
{
    int choise;
    printf("\n enter the month number : ");
    scanf("%d",&choise);
    switch(choise)
    {
        case 1: printf("Month is :  January");
                break;
        case 2: printf("Month is :  February");
                break;
        case 3: printf("Month is :  March");
                break;
        case 4: printf("Month is :  April");
                break;
        case 5: printf("Month is :  May");
                break;
        case 6: printf("Month is :  June");
                break;
        case 7: printf("Month is :  July");
                break;
        case 8: printf("Month is :  August");
                break;
        case 9: printf("Month is :  September");
                break;
        case 10: printf("Month is :  October");
                break;
        case 11: printf("Month is :  November");
                break;
        case 12: printf("Month is :  December");
                break;
        default : printf("invalid number");
    }


}

Output

Enter the  month number : 5
Month is : May

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Basic C Programming Examples

This question belongs to these collections

Similar questions


need a help?


find thousands of online teachers now
C Program To Take Input of 5 Subject, Find Total A... >>
<< C Program to Calculate Simple interest and Compoun...