Run ❯
Get your
own
website
×
Change Orientation
Change Theme, Dark/Light
Go to Spaces
#include
#include
int main() { char c = '\n'; if (iscntrl(c)) { printf("'%c' (ASCII value %d) is a control character", c, c); } else { printf("'%c' (ASCII value %d) is not a control character", c, c); } return 0; }
'
' (ASCII value 10) is a control character