tolower, toupper헤더 파일[언어 자료구조 알고리즘/C11 표준 라이브러리 함수] - ctype.h int tolower(int c); c를 소문자로 변환int toupper(int c); c를 대문자로 변환 입력 매개 변수 리스트c 아스키 키드 값반환 값tolower 함수는 c가 대문자일 때 소문자 반환toupper 함수는 c가 소문자일 때 대문자 반환 사용 예//C언어 표준 라이브러리 함수 가이드//int tolower(int c); c를 소문자로 변환//int toupper(int c); c를 대문자로 변환 #include #include #include int main(void){ char str[100] = "Everyday Is A Holiday."; int slen; int i =..