100% c prog calender month ఒక నెల
#include<stdio.h>
void main()
{
int i,p,q,n,k;
printf("\n day of the week on which 1st of the month occurs=");
printf("\nEnter 1 for sunday, 2 for monday ...7 for saturday:");
scanf("%d",&i);
printf("\n enter no of days. 28-31:");
scanf("%d",&n); printf("\n"); printf(". ");
printf("SUN MON TUE WED THU FRI SAT\n");
for(k=0;k<4*(i-1);k++)
printf(" ");
for(q=1;q<=7-i+1;q++) printf("%4d", q);
printf("\n");
for(p=2;p<=5;p++)
{
for(q=1;q<=7;q++)
{
if((p-2)*7+q+(7-i+1)<=n) printf("%4d", (p-2)*7+q+(7-i+1));
} printf("\n");
} // end of the p for loop
} //end of main
day of the week on which 1st of the month occurs=
Enter 1 for sunday, 2 for monday ...7 for saturday:1
enter no of days. 28-31:30
. SUN MON TUE WED THU FRI SAT
1 2 3 4 5 6 7
8 9 10 11 12 13 14
15 16 17 18 19 20 21
22 23 24 25 26 27 28
29 30
विक्रम कुमार
नमस्कार / నమస్కారము /ನಮಸ್ಕಾರ/ வணக்கம்/ নমস্কাৰ/ નમસ્તે/ ସୁପ୍ରଭାତ/ നമസ്കാരം
विक्रम कुमार
కామెంట్లు
కామెంట్ను పోస్ట్ చేయండి
దయచేసి మీ సలహాలను సూచనలను స్పష్టంగా పేర్కొనగలరు. plz see that ur comments are 'acceptable' in a value based society.