1.

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

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


Discussion

No Comment Found