You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

29 lines
589 B
C

/* String - Program which reads month number and displays the same in words. (Use two dimensional array) */
#include <stdio.h>
#include <conio.h>
void main()
{
int m ;
char x[12][10] = {"January", "February", "March", "April", "May", "June", "July", "August", "September", "October",
"November", "December"
} ;
clrscr();
printf("Enter the month number: ") ;
scanf("%d", &m) ;
printf("Month in words is: %s", x[m-1]) ;
getch();
}
/*
Output:
Enter the month number: 7
Month in words is: July
*/