Converts a character to uppercase.
#include <ctype.h> int toupper (int character);
If the argument represents a lowercase letter, and there is a corresponding uppercase letter, as defined by character type information in the program locale category LC_TYPE, the corresponding uppercase letter is returned.
If the argument is not a lowercase character, it is returned unchanged.
x | The uppercase letter corresponding to the argument. Or, the unchanged argument, if the argument is not a lowercase character. |