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