adplus-dvertising
frame-decoration

Question

What is the output of this 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

Posted under C Programming

Answer: (a).Non-zero number

Engage with the Community - Add Your Comment

Confused About the Answer? Ask for Details Here.

Know the Explanation? Add it Here.

Q. What is the output of this C code?