1.

What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
char ch = 'I';
printf("%d n", isspace(ch));
}

A. I
B. Compilation Error
C. Non-zero number
D. Nothing
E. None of these
Answer» D. Nothing


Discussion

No Comment Found