You see, I am writing a program that uses strings for input to determine things, and I don't want it to be case sensitive.
So, I know you can go through a string and go char by char to store each char, tolower()
'd into another string while in a for loop, but I don't know how to get the string's length or how to get char positions in strings anymore (it's been a while).
Any help is appreciated!