Inhaltsverzeichnis

isdigit()

#include <cctype>

int isdigit (int c) 

Ist c eine Zifferzeichen?

Parameter

c Zeichen

Ergebnis

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

Siehe auch

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

Beispiel

isdigit.cpp
#include <cctype>
#include <iostream>
using namespace std;
 
int main()
{
  cout << "Zifferzeichen: \n";
  for (int i=0; i<256; ++i)
  {
    if (isdigit(i))
    {
      cout << i << ' ' << char(i) << '\n';
    }    
  }
}