/* * * Exercise 1-7. Write a program to print the value of EOF. * * Author: Kun Deng */ #include int main() { printf("The value of the symbolic constant EOF is %d\n", EOF); return 0; }