/* Exercise 1-7. Write a program to print the value of EOF. === The program printed -1, the value of EOF. */ #include int main () { printf("%d\n", EOF); }