#include #include int main() { char c = '8'; if (isdigit(c)) { printf("%cは数字です。\n", c); } else { printf("%cは数字ではありません。\n", c); } return 0; }