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 = '\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