#include int isprint(int c) { return (isgraph(c) || c == ' '); }