#include <ctype.h>
int toupper(int ch);
toupper() converts any lower-case character in the range from a to z into an upper-case character from A to Z.
If ch is a lower-case character, returns the corresponding upper-case letter. Otherwise, returns ch (unchanged).
islower()
isupper()
tolower()