February 13, 2011

C Program to Enter any Day between 1 to 7 & show that Day


/*C Program to Enter any Day between 1 to 7 & show that Day*/
#include<stdio.h>
#include<conio.h>
void main()
{
 int i;
 clrscr();
 printf("\nEnter a day between 1 to 7\n\n");
 scanf("%d",&i);
 switch(i)
 {
case 1:
printf("\n its Sunday");
break;

case 2:
printf("\n its monday");
break;

case 3:
printf("\n its Tuesday");
break;

case 4:
printf("\n its Wednesday");
break;

case 5:
printf("\n its thursday");
break;

case 6:
printf("\n its Friday");
break;

case 7:
printf("\n its Saturday");
break;

default:
printf("\nEnter a day between 1 to 7");
break;
}
getch();
 }


Hope you liked my posts, give comments if you have any doubts.. :)

Related Posts :



Categories:

0 comments:

Post a Comment

Twitter Delicious Facebook Digg Stumbleupon Favorites More

 
Related Posts with Thumbnails