Notice that what is considered a letter may depend on the locale being used; In the default C locale, an uppercase letter is any of: A B C D E F G H I J K L M N O P Q R S T U V W X Y Z.
For a detailed chart on what the different ctype functions return for each character of the standard ANSII character set, see the reference for the <cctype> header.
In C++, a locale-specific template version of this function (isupper) exists in header <locale>.
Parameters
- c
- Character to be checked, casted to an int, or EOF.
Return Value
A value different from zero (i.e., true) if indeed c is an uppercase alphabetic letter. Zero (i.e., false) otherwise.Example
| 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 |
|
Output:
test string. |
See also
| islower | Check if character is lowercase letter (function) |
| isalpha | Check if character is alphabetic (function) |
| toupper | Convert lowercase letter to uppercase (function) |
| tolower | Convert uppercase letter to lowercase (function) |
