User Tools

Site Tools


Sidebar

Programming Reference/Librarys

Question & Answer

Q&A is closed







c:ctype.h:isalpha

Table of Contents

isalpha

    int isalpha(int chr);

check if a character Alphabetical

C Sourcecode Example

#include <stdio.h> /* including standard library */
//#include <windows.h> /* uncomment this for Windows */
 
#include <ctype.h>
 
int main ()
{
  int i;
  char string[11]="Test -!&%1";
  for (i=0; i <= 11;i++)
    {
     if ( isalpha(string[i]) != 0 )
      {
       printf("Character %i is alphabetical\n",i);
      }
    }
  return 0;
}

output

  user@host:~$ ./isalpha 
  Character 0 is alphabetical
  Character 1 is alphabetical
  Character 2 is alphabetical
  Character 3 is alphabetical

on the occasion of the current invasion of Russia in Ukraine

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

Impressum Datenschutz