How could one convert a string to upper case. The examples I have found from googling only have to deal with chars.
try the toupper() function (#include ). it accepts characters as arguments, strings are made up of characters, so you'll have to iterate over each individual character that when put together comprise the string
toupper()
#include