Vidyalelo
C Programming · Q93

Arrays and Strings

Programming · C Programming · question 93

Q93

What will be the output of the following C code? int ch = ' '; if(isprint(ch)) printf("ch = |%c| printable ", ch); else printf("ch= |%c| not printable ",ch);

A.
ch = |\t| printable
B.
ch = |\t| not printable
C.
ch = | | printable
D.
ch = | | not printable
Answer

Answer: Option D

Solution

Answer: Option D
No explanation is given for this question Let's Discuss on Board