Loading...
Select Version
&pagelevel(4)&pagelevel
Definition | #include <ctype.h> int isupper(int c);
| |
Returnwert | != 0 | Großbuchstabe. |
0 | kein Großbuchstabe. | |
Hinweise |
| |
Beispiel | #include <ctype.h> #include <stdio.h> int main(void) { int c; while((c = getchar()) != EOF) printf("%s : %c\n",((isupper(c))? "Großbuchstabe " : "Sonstiges"),c); return 0; } | |
Siehe auch | isalnum, isascii, iscntrl, isdigit, islower, isprint, ispunct, isgraph, isspace, isalpha, isxdigit, isebcdic, iswupperx |