C++ Programming/Code/Standard C Library/Functions/toupper

toupper

Syntax
#include <cctype>
int toupper( int ch );

The toupper() function returns the uppercase version of the character ch.

Related topics
tolower
Category:Book:C++ Programming#Code/Standard%20C%20Library/Functions/toupper%20
Category:Book:C++ Programming