Inhaltsverzeichnis

iscntrl()

#include:: <cctype> <code cpp> int iscntrl (int c) </code> Ist c ein Steuerzeichen? ==== Parameter ==== | c'' | Zeichen |

Ergebnis

Rückgabewert: ungleich 0, falls das Zeichen dieser Gruppe angehört.

Siehe auch

<locale>, isalnum(), isalpha(), isdigit(), isgraph(), islower(), isprint(), ispunct(), isspace(), isupper(), isxdigit().

Beispiel

iscntrl.cpp
#include <cctype>
#include <iostream>
using namespace std;
 
int main()
{
  cout << "Steuerzeichen (Seltsame Effekte sind zu erwarten!): \n";
  for (int i=0; i<256; ++i)
  {
    if (iscntrl(i))
    {
      cout << i << ' ' << char(i) << '\n';
    }    
  }
}