What will be the output of the following C code?
#include <stdio.h>
#include <ctype.h>
int main()
{
char c = 't';
printf("%d\n", isspace(c));
}
#include <stdio.h>
#include <ctype.h>
int main()
{
char c = 't';
printf("%d\n", isspace(c));
}A. Non-zero number
B. Nothing
C. Error
D. t
Answer: Option A

Join The Discussion