Files
learning_c/ch_01/exercise_01-07/main.c
T
2020-09-01 23:45:23 -04:00

17 lines
212 B
C

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