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
AnswerAnswer: Option D
Solution
Answer: Option D
No explanation is given for this question Let's Discuss on Board