Blob


1 /* Write a program to print the value of EOF. */
3 #include <stdio.h>
5 main()
6 {
7 printf("EOF: %d", EOF);
8 }