isupper()

#include <ctype.h>

int isupper( int character );

This functions returns a nonzero integer if character is an uppercase character ( 'A' through 'Z' ). Otherwise, it returns 0.


Back to Essential C Functions.