#include <stdio.h>
#include <stdlib.h>
int main() {
char c = '8';
if (isdigit(c)) {
printf("%c is a digit", c);
} else {
printf("%c is not a digit", c);
}
return 0;