The C Programming Language, 2nd Edition, by Kernighan and Ritchie
Exercise 1.07 on page 17
Write a program to print the value of EOF .
Solution by Richard Heathfield
#include <stdio.h>
int main(void)
{
printf("The value of EOF is %d\n\n", EOF);
return 0;
}