2.2.38 char * strupr
char * strupr(char *)
The strupr() function will convert a string to upper case. Only the lower case alphabetic characters [a .. z] are converted. Non-alphabetic characters will not be changed.
Remember:
The strupr() function returns a pointer to the converted string. The pointer is the same as that passed in since the operation is perform in place.