Question: in C language, please Write a C program that prompts the user to enter a character, then check whether this character is an alphabet, digit

in C language, please

in C language, please Write a C program that prompts the user

Write a C program that prompts the user to enter a character, then check whether this character is an alphabet, digit or special character. You should implement 3 functions: a) isAlphabet, that receives a character and returns 1 if the character is an alphabet (alphabet letters are all lowercase letters (a-z) and uppercase letters (AZ)). Otherwise, returns 0. b) is Digit, that receives a character and returns 1 if the character is a number (numbers are (0-9)). Otherwise, returns 0. c) isSpecialChar, that receives a character and returns 1 if the character is a special character. Otherwise, returns 0. [Hint: you can call the previous functions]

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!