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