SilverScreen Solid Modeler

toupper

toupper

Previous topic Next topic  

toupper

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int toupper( int c )

 

int c;         /* input character */

 

 

 




Synopsis

#include "ctype.h"

 

The toupper function converts c to uppercase if it is an lowercase letter.

 

 

Parameters

c is the input character, expanded to an int .

 

 

Return Value

toupper returns returns the resultant character, expanded to an int .

 

 

See Also

tolower , strupr