풀이 strlwr함수를 이용한 풀이 ( 백준에서는 사용 x) #include #include int main() { int n; char s[20]; scanf("%d", &n); for (int i = 0; i 소문자 로 바꿔주는 알고리즘을 따로 만들어야한다. 소문자 변환 알고리즘 풀이 #include int main() { int n; char si[20]; scanf("%d", &n); for (int i = 0; i < n; i++) { scanf("%s..