#include <stdio.h>
#include <stdlib.h>
int main() {
char c = '#';
if (isgraph(c)) {
printf("%c has a graphical representation", c);
} else {
printf("%c does not have a graphical representation", c);
}
return 0;