namespace cpp {}

C++ lernen, kennen, anwenden

Benutzer-Werkzeuge

Webseiten-Werkzeuge


kennen:include:cctype
no way to compare when less than two revisions

Unterschiede

Hier werden die Unterschiede zwischen zwei Versionen angezeigt.


kennen:include:cctype [2012-02-24 15:16] (aktuell) – angelegt - Externe Bearbeitung 127.0.0.1
Zeile 1: Zeile 1:
 +====== <cctype> ======
 +===== Funktionen =====
 +<code cpp>
 +int isalnum (int c) 
 +</code>
 +[[..:lib:isalnum|Beschreibung]]:
 + Ist ''c'' ein Buchstabe oder ein Zifferzeichen?
 +
 +<code cpp>
 +int isalpha (int c) 
 +</code>
 +[[..:lib:isalpha|Beschreibung]]:
 + Ist ''c'' ein Buchstabe?
 +
 +<code cpp>
 +int iscntrl (int c) 
 +</code>
 +[[..:lib:iscntrl|Beschreibung]]:
 + Ist ''c'' ein Steuerzeichen?
 +
 +<code cpp>
 +int isdigit (int c) 
 +</code>
 +[[..:lib:isdigit|Beschreibung]]:
 + Ist ''c'' eine Zifferzeichen?
 +
 +<code cpp>
 +int isgraph (int c) 
 +</code>
 +[[..:lib:isgraph|Beschreibung]]:
 + Ist ''c'' ein druckbares Zeichen außer Leerzeichen?
 +
 +<code cpp>
 +int islower (int c) 
 +</code>
 +[[..:lib:islower|Beschreibung]]:
 + Ist ''c'' ein Kleinbuchstabe?
 +
 +<code cpp>
 +int isprint (int c) 
 +</code>
 +[[..:lib:isprint|Beschreibung]]:
 + Ist ''c'' ein druckbares Zeichen?
 +
 +<code cpp>
 +int ispunct (int c) 
 +</code>
 +[[..:lib:ispunct|Beschreibung]]:
 + Ist ''c'' ein druckbares Zeichen außer Leerzeichen, Buchstaben und Ziffern?
 +
 +<code cpp>
 +int isspace (int c) 
 +</code>
 +[[..:lib:isspace|Beschreibung]]:
 + Ist ''c'' ein Leerzeichen, Tabulator oder Zeilenvorschub ("white space")?
 +
 +<code cpp>
 +int isupper (int c) 
 +</code>
 +[[..:lib:isupper|Beschreibung]]:
 + Ist ''c'' ein Großbuchstabe?
 +
 +<code cpp>
 +int isxdigit (int c) 
 +</code>
 +[[..:lib:isxdigit|Beschreibung]]:
 + Ist ''c'' ein Hexadezimal-Zifferzeichen?
 +
 +<code cpp>
 +int tolower (int c) 
 +</code>
 +[[..:lib:tolower|Beschreibung]]:
 + Liefert für einen Großbuchstaben ''c'' den entsprechenden Kleinbuchstaben, sonst dasselbe Zeichen. 
 +
 +<code cpp>
 +int toupper (int c) 
 +</code>
 +[[..:lib:toupper|Beschreibung]]:
 + Liefert für einen Kleinbuchstaben ''c'' den entsprechenden Großbuchstaben, sonst dasselbe Zeichen.
  
kennen/include/cctype.txt · Zuletzt geändert: 2012-02-24 15:16 von 127.0.0.1

Donate Powered by PHP Valid HTML5 Valid CSS Driven by DokuWiki