17 lines
212 B
C
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;
|
|
}
|