SilverScreen Solid Modeler

isupper

isupper

Previous topic Next topic  

isupper

Previous topic Next topic JavaScript is required for the print function  

StandardCLibrary

 

int isupper( int c )

 

int c;       /* a character */

 

 

 




Synopsis

#include "ctype.h"

 

The isupper function determines whether c is an uppercase letter.

 

 

Parameters

c is an int, whose value must be representable as a char.

 

 

Return Value

isupper returns a non-zero value if c is an uppercase letter, and 0 if not.

 

See Also

islower