1.

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

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


Discussion

No Comment Found