c Überprüfen Sie, ob der Charakter ein Raum ist
char ch = ' ';
if(isspace(ch))
printf("space");
else
printf("other symbol" );
//output: space
CCopy
Dark Dugong
char ch = ' ';
if(isspace(ch))
printf("space");
else
printf("other symbol" );
//output: space
CCopy