User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







cpp:cctype:isdigit

isdigit

    int isdigit(int chr);

tests if a character a digit

cpp Sourcecode Example

#include <iostream> /* including standard library */
#include <string>
#include <cctype>
 
using namespace std;
int main ( void )
{
  int i;
  string str="Test\n-!&%1";
  for (i=0; i <= 11;i++)
    {
     if ( isdigit(str[i]) != 0 )
      {
       cout << "Character " << i << " is a digit" << endl;
      }
    }
  return 0;
}

output

  Character 9 is a digit

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
cpp/cctype/isdigit.txt · Last modified: 2024/02/16 01:04 (external edit)

Impressum Datenschutz