Notice
Recent Posts
Recent Comments
Creative Code
bigLetter.c 본문
#include <stdio.h>
int main(void)
{
printf("문자 입력 :\n");
char ch;
scanf("%c",&ch);
if (ch >='A' && ch<='Z') {
printf("%c is a big\n",ch);
}
return 0;
}
'C Programming' 카테고리의 다른 글
isAlphabet.c (0) | 2023.07.31 |
---|---|
compareOp.c (0) | 2023.07.31 |
absoluteValue.c (절댓값 구하기) (0) | 2023.07.31 |
A2Z.c (대문자인지 판별하기) (0) | 2023.07.31 |
triangle.c(삼각형의 넓이 구하기) (0) | 2023.07.31 |