81
What will be the output of the following C code?
#include <stdio.h>
int main()
{
char i = '9';
if (isdigit(i))
printf("digit\n");
else
printf("not digit\n");
return 0;
} Answer & Solution
Answer: Option
A
No explanation is given for this question. Let's Discuss on Board