Vidyalelo
C Programming · Q81

File Input Output

Programming · C Programming · question 81

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
Answer
B.
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