1 2 3 4 5 6 7 8 9 10 11 12
/* Exercise 1-7. Write a program to print the value of EOF. === The program printed -1, the value of EOF. */ #include <stdio.h> int main () { printf("%d\n", EOF); }