#include <stdio.h>
#include <ctype.h>
int main(void)
{
char ch = 'a';
if (isspace(ch))
printf("yes\n");
else
printf("no\n");
ch = ' ';
if (isspace(ch))
printf("yes\n");
else
printf("no\n");
ch = '\n';
if (isspace(ch))
printf("yes\n");
else
printf("no\n");
ch = '\t';
if (isspace(ch))
printf("yes\n");
else
printf("no\n");
return 0;
}
/*
run:
no
yes
yes
yes
*/