[C언어 소스] 대소문자 변환 [C언어 소스] 대소문자 변환 //대문자는 소문자로 소문자는 대문자로 #include int main(void){ char str[100]="This is a test sentence. Hello World!"; int i; printf("원문: %s\n",str); for(i=0;str[i]; i++) { if((str[i]>='a')&&(str[i]='A')&&(str[i] C언어/C언어 예제 2016.04.12