kennen:lib:isupper
Inhaltsverzeichnis
isupper()
Parameter
c | Zeichen |
Ergebnis
Rückgabewert: ungleich 0, falls das Zeichen dieser Gruppe angehört.
Siehe auch
<locale>, isalnum(), isalpha(), iscntrl(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isxdigit().
Beispiel
- isupper.cpp
#include <cctype> #include <iostream> using namespace std; int main() { cout << "Grossbuchstaben: \n"; for (int i=0; i<256; ++i) { if (isupper(i)) { cout << i << ' ' << char(i) << '\n'; } } }
kennen/lib/isupper.txt · Zuletzt geändert: 2019-11-20 15:43 von 127.0.0.1