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