Examveda

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

A. Compile time error

B. space

C. not space

D. None of the mentioned

Answer: Option C


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output