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