Vidyalelo
C Programming · Q91

Arrays and Strings

Programming · C Programming · question 91

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
Answer
C.
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