Converts a lowercase alphabetic character to uppercase #include <ctype.h> int toupper ( int c ); The tolower( ) function returns the uppercase letter corresponding to the character value of its argument c. If c is not an lowercase letter, or if there is no uppercase letter which corresponds to it, its value is returned unchanged.
ExampleSee the example for setlocale( ) in this chapter. See Alsoisupper( ), tolower( ), islower( ), towupper( ), towlower( ), towctrans( ) |