Question: Write a c program that reads in a single character and determines ALL of the following for that one character: - is it a numeric

Write a c program that reads in a single character and determines ALL of the following for that one character: - is it a numeric character '0' - '9' - is it uppercase alphabetic 'A' - 'Z' - is it lowercase alphabetic 'a' - 'z' - is it alphabetic, uppercase or lowercase ... { Write a single test expression for each of the } { four categories of character listed above. } { } { Also write the opposite of each of the previous } { four tests, for a total of eight tests. } - is not a numeric character '0' - '9' - is not uppercase alphabetic 'A' - 'Z' - is not lowercase alphabetic 'a' - 'z' - is not alphabetic, uppercase or lowercase Read in the single character, then test it with each of the eight tests and display a message to show that each test is working properly. 

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!