Recent Posts
printf("ho_tari\n");
printA2Z(가로) 본문
#include <stdio.h>
int main(void)
{
int i = 'A';
while (i <= 'Z')
{
printf("%c", i);
++i;
}
printf("\n");
return 0;
}
#include <stdio.h>
int main(void)
{
for (int i = 'A'; i <= 'Z'; ++i)
{
printf("%c", i);
}
printf("\n");
return 0;
}
<compile 결과>
'C' 카테고리의 다른 글
procScore (0) | 2023.09.01 |
---|---|
printOne2Ten (0) | 2023.09.01 |
printA2Z(세로) (0) | 2023.09.01 |
exponent practice (0) | 2023.09.01 |
power (0) | 2023.09.01 |