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

From Wikibooks, open books for an open world
Jump to navigation Jump to search

toupper[edit | edit source]

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

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

Related topics
tolower