Q91
What will be the output of the following C code? int ch= ' '; if(isgraph(ch)) printf("ch = %c can be printed ",ch); else printf("ch=%c cannot be printed ",ch);
A.
ch = ' ' can be printed
B.
ch = ' ' cannot be printed
AnswerC.
compile error
D.
run-time error
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board