【问题背景】
C语言程序设计慕课版第二版第十章上机指导
【问题题目】
输入数字输出对应月份简称
【代码呈上】
#include <stdio.h>
#include <conio.h>
int main()
{int i;
char *month[]={
"Jan",
"feb",
"mar",
"apr",
"may",
"june",
"july",
"aug",
"sep",
"oct",
"nev",
"dec"
};
scanf("%d",&i);
char **p;
p=month;
printf("the month is: ");
printf("%s\n",*(p+i-1));
//getch();
return 0;
}