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:
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:
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.
It will be nice if you may share this link in any developer community or anywhere else, from where other developers may find this content. Thanks.
https://w3resource.com/c-programming-exercises/conditional-statement/c-conditional-statement-exercises-16.php
- Weekly Trends and Language Statistics
- Weekly Trends and Language Statistics