char *toLowerCase(char *str) { for (int i = 0; i < strlen(str); i++) str[i] = tolower(str[i]); return str; }
C
© The Algorithms 2021