The code here tests a user-entered character and returns values depending on whether the character is numeric, upper case, etc.
Enter the code, note the output, and answer the questions below. Put your answers into a Word document.
#include <stdio.h>
#include <ctype.h>
int main(void)
{printf(“Enter a character: “);
int c = getchar();
if (isdigit(c) == 0)
{printf(“User has entered the character: %cn”, c);
printf(“isalnum(‘%c’) = %dn”, c, isalnum(c));
printf(“isxdigit(‘%c’) = %dn”, c, isxdigit(c));
printf(“islower(‘%c’) = %dn”, c, islower(c));
printf(“isupper(‘%c’) = %dn”, c, isupper(c));
printf(“tolower(‘%c’) = %dn”, c, tolower(c));
printf(“toupper(‘%c’) = %dn”, c, toupper(c));
printf(“isspace(‘%c’) = %dn”, c, isspace(c));
printf(“iscntrl(‘%c’) = %dn”, c, iscntrl(c));
printf(“ispunct(‘%c’) = %dn”, c, ispunct(c));
printf(“isprint(‘%c’) = %dn”, c, isprint(c));
printf(“isgraph(‘%c’) = %dn”, c, isgraph(c));
}
return 0;
}
Complete the sentence When the user enters the value of “a,” for each of the following:
1. Why does isalum() return the value 2?
2. Why does isxdigit() return the value 128?
3. Why does islower() return the value 2?
4. Why does isupper() return the value 0?
5. Why does tolower() return the value 97?
6. Why does toupper() return the value 65?
7. Why does isspace() return the value 0?
8.Why does iscntrl() return the value 0?
9.Why does ispunct() return the value 0?
10. Why does isprint() return the value 2?
11. Why does isgraph() return the value 2?
Delivering a high-quality product at a reasonable price is not enough anymore.
That’s why we have developed 5 beneficial guarantees that will make your experience with our service enjoyable, easy, and safe.
You have to be 100% sure of the quality of your product to give a money-back guarantee. This describes us perfectly. Make sure that this guarantee is totally transparent.
Read moreEach paper is composed from scratch, according to your instructions. It is then checked by our plagiarism-detection software. There is no gap where plagiarism could squeeze in.
Read moreThanks to our free revisions, there is no way for you to be unsatisfied. We will work on your paper until you are completely happy with the result.
Read moreYour email is safe, as we store it according to international data protection rules. Your bank details are secure, as we use only reliable payment systems.
Read moreBy sending us your money, you buy the service we provide. Check out our terms and conditions if you prefer business talks to be laid out in official language.
Read more