Notice
Recent Posts
Recent Comments
Creative Code
printA2Z.c(A부터 Z까지 출력) 본문
#include <stdio.h>
int main(void)
{
char ch = 'A';
while (ch <= 'Z') {
printf("%c\n",ch);
ch++;
}
return 0;
}
'C Programming' 카테고리의 다른 글
printOne2Ten.c(1부터 10까지 출력) (0) | 2023.08.01 |
---|---|
printA2Z2 (A부터 Z까지 출력) (1) | 2023.08.01 |
posZeroNeg2 (양수,음수,0 판단 삼항연산자) (0) | 2023.08.01 |
passFail3.c(합격,실패 판별 삼항연산자) (0) | 2023.08.01 |
ordinaryLeap3.c(윤년,평년 판별 삼항연산자) (1) | 2023.08.01 |