Skip to content

709-to-lower-case

DevGod
DevGod
Vtuber
char* toLowerCase(char* s) {
for(int i = 0; s[i]; i++){
s[i] = tolower(s[i]);
}
return s;
}