Run ❯
Get your
own
website
❯
Run Code
Ctrl+Alt+R
Change Orientation
Ctrl+Alt+O
Change Theme
Ctrl+Alt+D
Go to Spaces
Ctrl+Alt+P
#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