Table of Contents
Previous Section Next Section

toupper

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

The toupper( ) function returns the uppercase equivalent of ch if ch is a letter; otherwise, ch is returned unchanged.

A related function is tolower( ).


Table of Contents
Previous Section Next Section