기능명 : 토퍼
헤더 파일 : <ctype.h>
함수 프로토타입 : int toupper(int ch);
기능 : 소문자를 소문자가 아닌 대문자로 변환합니다.
매개변수 : 변환할 int ch 문자
반환값 : 변환된 문자를 반환
프로그램 예 : 소문자를 대문자로 변환
#include<ctype.h>#include<stdio.h>intmain(){charch1,ch2;printf(inputacharacter:);scanf(%c,&ch1);ch2=toupper(ch1);printf(transform%cto%c .n,ch1,ch2);return0;}
실행 결과:
입력문자:gtransformgtoG.