Vidyalelo
C Programming · Q154

File Input Output

Programming · C Programming · question 154

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
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