Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { char c = ' '; if (isspace(c)) { printf("%c is whitespace", c); } else { printf("%c is not whitespace", c); } return 0; }
is whitespace