int isblank ( int c );
1234567891011121314151617
/* isblank example */ #include <stdio.h> #include <ctype.h> int main () { char c; int i=0; char str[]="Example sentence to test isblank\n"; while (str[i]) { c=str[i]; if (isblank(c)) c='\n'; putchar (c); i++; } return 0; }
Example sentence to test isblank