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