Examveda

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));
}

A. Non-zero number

B. Nothing

C. Error

D. t

Answer: Option A


This Question Belongs to C Program >> File Input Output

Join The Discussion

Related Questions on File Input Output