;
C언어
#include <ctype.h>
🔔 예) toupper
#include <ctype.h>
#include <stdio.h>
#include <string.h>
int main()
{
char buf[255];
int i;
fgets(buf, 255, stdin);
for (i = 0; i < strlen(buf); i++)
{
buf[i] = toupper(buf[i]);
}
fputs(buf, stdout);
}
결과
[C] 배열을 float 형으로 변환(BYTE to float) (1) | 2016.09.19 |
---|---|
C언어 강좌 ( 오류처리 / errno / strerror / strerror_r ) (0) | 2016.09.19 |
C언어 강좌(도스 에서의 메시지 박스 사용) (0) | 2016.09.19 |
C언어 강좌(조건부 컴파일/매크로 함수와 #undef) (0) | 2016.09.19 |
C언어 강좌(bzero, memset/저장 클래스/그 밖의 자료형과 제어문) (0) | 2016.09.19 |