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
- C
- 안드로이드
- convert
- fabic
- web3js
- quick-start
- Android
- error
- coroutines
- Hyperledger
- LAYER_TYPE_SOFTWARE
- Exception
- vuepress
- 스트리밍
- dataginding
- test
- bigquery
- hardwareacceleration
- Gradle
- 컴파일
- Realm
- kotlin
- 다윈
- Glide
- firebase
- porterduff
- ethereum
- null safety
- log
- fabric-sdk-java
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