Q:

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

0

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

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

I have used DEV-C++ compiler for debugging purpose. But you can use any C programming language compiler as per your availability.

#include <stdio.h>
int main()
{     
   char ch;
 
    printf("Enter any character: ");
    scanf("%c", &ch); 
 
    // Alphabet checking condition
    if((ch >= 'a' && ch <= 'z') || (ch >= 'A' && ch <= 'Z'))
    {
        printf("%c is an Alphabet.", ch);
    }
    else if(ch >= '0' && ch <= '9')
    {
        printf("%c is a Digit.", ch);
    }
    else
    {
        printf("%c is Special character.", ch);
    } 
    return 0;   
}

Result:

Enter any character: $

$ is Special character.

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

C program to print day name of week.... >>
<< C program to check entered character vowel or cons...