Answers for "c check if character is a space"

C
0

c check if character is a space

char ch = ' ';
if(isspace(ch))
  printf("space");     
else
    printf("other symbol" );
//output: space
CCopy
Posted by: Guest on April-06-2022

Code answers related to "c check if character is a space"

Code answers related to "C"

Browse Popular Code Answers by Language