0
How to use case insensitive strings?
If I were taking user input, what would I have to to make sure that capitalization of words does NOT matter?
1 Respuesta
+ 1
after taking input... pass the string to the func
tolower (str);
this function reduces all the uppercase letters in the string to lower case.
I don't remember the header for this func you may google it