/* Exercise 1-6. Verify that the expression getchar() != EOF is 0 or 1. */ #include main() { printf("%d\n", getchar() != EOF); }