w3resource

C Exercises: Check whether a character is an alphabet, digit or special character

C Conditional Statement: Exercise-16 with Solution

Write a C program to check whether a character is an alphabet, digit or special character.

Visual Presentation:

Check whether a character is an alphabet, digit or special character

Sample Solution:

C Code:

#include <stdio.h>  // Include the standard input/output header file.

int main()  
{  
    char sing_ch;  // Declare a variable to store a single character.

    printf("Input a character: ");  // Prompt user for input.  
    scanf('%c', & sing_ch);  // Read and store the character input.

    /* Checks whether it is an alphabet */  
    if((sing_ch>='a' && sing_ch<='z') || (sing_ch>='A' && sing_ch<='Z'))  
    {  
        printf("This is an alphabet.\n");  // Print message for alphabet.
    }  
    else if(sing_ch>='0' && sing_ch<='9') /* whether it is digit */  
    {  
        printf("This is a digit.\n");  // Print message for digit.
    }  
    else /* Else special character */  
    {  
        printf("This is a special character.\n");  // Print message for special character.
    }  
}

Sample Output:

Input a character: @                                                                                          
This is a special character.

Flowchart:

Flowchart: Check whether a character is alphabet, digit or special character

C Programming Code Editor:

Previous: Write a C program to check whether a triangle can be formed by the given value for the angles.
Next: Write a C program to check whether an alphabet is a vowel or consonant.

What is the difficulty level of this exercise?

Test your Programming skills with w3resource's quiz.



Follow us on Facebook and Twitter for latest update.