{{keywords>wiki library source code example reference}}
===== isspace =====
int isspace(int chr);
checks whether a character a space
===== C Sourcecode Example =====
#include /* including standard library */
//#include /* uncomment this for Windows */
#include
int main ( void )
{
int i;
char string[11]="Test -!&%1";
for (i=0; i <= 11;i++)
{
if ( isspace(string[i]) != 0 )
{
printf("Character %i is a space\n",i);
}
}
return 0;
}
==== output ====
output:
user@host:~$ ./isspace
Character 4 is a space
Character 11 is a space