Vidyalelo
C Programming · Q198

File Input Output

Programming · C Programming · question 198

Q198

What will be the output of the following C code? #include #include int main() int i = 9; if (isdigit(i)) printf("digit "); else printf("not digit "); return 0;

A.
digit
B.
not digit
Answer
C.
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