1.

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

A. Compilation Error
B. Space
C. Garbage value
D. Not Space
E. None of these
Answer» C. Garbage value


Discussion

No Comment Found