Examveda
Examveda

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

A. ch = |\t| printable

B. ch = |\t| not printable

C. ch = | | printable

D. ch = | | not printable

Answer: Option D


This Question Belongs to C Program >> Arrays And Strings

Join The Discussion

Related Questions on Arrays and Strings