User Tools

Site Tools


c:ctype.h:isdigit

Differences

This shows you the differences between two versions of the page.

Link to this comparison view

c:ctype.h:isdigit [2024/02/16 01:05] (current)
Line 1: Line 1:
 +{{keywords>wiki library source code example reference}}
 +====== isdigit ======
 +<code c>
 +    int isdigit(int chr);
 +</code>
 +
 +tests if a character a digit
 +
 +===== C Sourcecode Example =====
 +<code c>
 +#include <stdio.h> /* including standard library */
 +//#include <windows.h> /* uncomment this for Windows */
 +
 +#include <ctype.h>
 +
 +int main ( void )
 +{
 +  int i;
 +  char string[11]="Test\n-!&%1";
 +  for (i=0; i <= 11;i++)
 +    {
 +     if ( isdigit(string[i]) != 0 )
 +      {
 +       printf("Character %i is a digit\n",i);
 +      }
 +    }
 +  return 0;
 +}
 +</code>
 +
 +==== output ====
 +    user@host:~$ ./isdigit 
 +    Character 9 is a digit
  

on the occasion of the current invasion of Russia in Ukraine

Russian Stop this War
c/ctype.h/isdigit.txt · Last modified: 2024/02/16 01:05 (external edit)

Impressum Datenschutz