isalpha() function in C

Using the isaplha() function in C

The isalpha() function in C is used to check whether a character is alphabetic. The function takes a character as input and returns a non-zero value if the character is alphabetic, or zero if the character is not alphabetic.

Here is an example of how to use the isalpha() function:

#include <stdio.h>
#include <stdint.h>
#include <ctype.h>

int32_t main(int32_t argc, char const *argv[])
{
    char c = 'a';

    int32_t result = isalpha(c);

    if (result > 0x00)
    {
        printf("The character '%c' is an alphabet.\n", c);
    }
    else
    {
        printf("The character '%c' is not an alphabet.\n", c);
    }

    return 0;
}

The isalpha() function takes a character as input and returns a non-zero value if the character is alphabetic, or zero if the character is not alphabetic. In this example, the character 'a' is alphabetic, so the function will return a non-zero value and the printf() statement will print the output.

Explore the complete list of functions available in ctype header in C standard library.

0
Subscribe to my newsletter

Read articles from Muhammad Hassaan Shah directly inside your inbox. Subscribe to the newsletter, and don't miss out.

Written by

Muhammad Hassaan Shah
Muhammad Hassaan Shah

Passionate about new technological trends and like to share practical tips and tutorials about C, C++, Python, MATLAB, STM32, Arduino, ESP32, and more …