Q154
What will be the output of the following C code? #include #include int main() char i = 9; if (isdigit(i)) printf("digit "); else printf("not digit "); return 0;
A.
digit
B.
not digit
AnswerC.
Depends on the compiler
D.
None of the mentioned
Answer: Option B
Solution
Answer: Option B
No explanation is given for this question Let's Discuss on Board