Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { char c = '#'; if (isgraph(c)) { printf("%c has a graphical representation", c); } else { printf("%c does not have a graphical representation", c); } return 0; }
# has a graphical representation