1.

What will be the output of the following C code?
#include <stdio.h>
int main()
{
char n = '25';
if (isdigit(n))
{
printf("Digit n");
}
else
{
printf("Not Digit n");
}
return 0;
}

A. Compilation Error
B. 25
C. Digit
D. Not Digit
E. None of these
Answer» D. Not Digit


Discussion

No Comment Found