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