Mega Code Archive

 
Categories / C / Code Snippets
 

Returns nonzero if ch is a white-space character

//Declaration: int isspace(int ch); //Return: returns nonzero if ch is a white-space character, including space, horizontal tab, vertical tab, formfeed, carriage return, or newline character; otherwise zero is returned. #include <ctype.h> #include <stdio.h> int main(void) { char ch; for(;;) { ch = getchar(); if(isspace(ch)){ printf("%c is white space\n", ch); } if(ch == '.'){ break; } } return 0; } /* d is white space g is white space h is white space yr is white space x is white space . */