Notice
Recent Posts
Recent Comments
Link
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 | 31 |
Tags
- 안드로이드
- Hyperledger
- firebase
- Exception
- test
- C
- ethereum
- web3js
- porterduff
- coroutines
- fabric-sdk-java
- fabic
- bigquery
- null safety
- quick-start
- 다윈
- Gradle
- kotlin
- convert
- 컴파일
- LAYER_TYPE_SOFTWARE
- log
- hardwareacceleration
- vuepress
- Glide
- dataginding
- Realm
- Android
- error
- 스트리밍
Archives
- Today
- Total
날마다 새롭게 또 날마다 새롭게
month_name - 함수 구현 코드 본문
/* month_name : return name of n-th month */
char *month_name(int n)
{
static char *name[] = {
"Illegal month",
"January","February","March",
"April","May,"June","July",
"August","September","October",
"November","December"
};
return (n<1 || n>12)?name[0]:name[n];
}
Comments