#include <stdio.h>#include <ctype.h> int main() { int n = ' '; if (isspace(n)) { printf("Space\n"); } else { printf("Not Space\n"); } return 0; }
Space
Previous Question Next Question
Your comments will be displayed only after manual approval.