14. Write a C program to read no 1 to 7 and print relatively day Sunday to Saturday.

#include<stdio.h>
#include<conio.h>
void main()
{
int day;
printf("Enter the no from 1 to 7 to find corresponding : ");
scanf("%d",&day);
switch (day)
{
case 1:
printf("Sunday");
break;

case 2:
printf("Monday");
break;

case 3:
printf("Tuesday");
break;

case 4:
printf("Wednesday");
break;

case 5:
printf("Thursday");
break;

case 6:
printf("Friday");
break;

case 7:
printf("Saturday");
break;

default:
printf("Enter the proper input\n");
break;
}
getch();
}

#OUTPUT:


Comments

Popular posts from this blog

12. Write a program to read marks from keyboard and your program should display equivalent grade according to following table(if else ladder) Marks Grade 100 - 80 Distinction 79 - 60 First Class 59 - 40 Second Class < 40 Fail

13. Write a c program to prepare pay slip using following data. Da = 10% of basic, Hra = 7.50% of basic, Ma = 300, Pf = 12.50% of basic, Gross = basic + Da + Hra + Ma, Nt = Gross – Pf.