toupper()

Syntax
#include <ctype.h>
int toupper(int ch);
Description

tolower() converts any lower-case character in the range from a to z into an upper-case character from A to Z.

Return

If ch is a lower-case character, the corresponding upper-case letter. Otherwise, ch is returned (unchanged).

See also

isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), and isxdigit(),

tolower()