Convert lowercase letter to uppercase
int toupper(int c)
The uppercase equivalent to c, if such value exists, or c (unchanged) otherwise.
EX1
void toupper_ex1() { printf("uppercase a is %c", toupper('a')); }
tolower
origin.h