#include #include int main() { char c = ' '; if (isspace(c)) { printf("%c is a whitespace character\n", c); } else { printf("%c is not a whitespace character\n", c); } return 0; }