函数getmonth应返回存储了n对应的月份英文名称的字符串头指针。如果传入的参数n不是一个代表月份的数字,则返回空指针NULL。
时间: 2023-04-10 20:03:44 浏览: 135
Date对象之获取和设置月份-getMonth&setMonth(教辅)
getmonth函数的实现如下:
```c
const char* getmonth(int n) {
static const char* months[] = {
"January", "February", "March", "April", "May", "June",
"July", "August", "September", "October", "November", "December"
};
if (n < 1 || n > 12) {
return NULL;
}
return months[n-1];
}
```
该函数使用静态数组存储了月份的英文名称,如果传入的参数n不在1到12之间,则返回空指针NULL。否则,返回对应月份的英文名称。
阅读全文