标签:exercise 1-7
/*
Write a program to print the value of EOF.
*/
#include <stdio.h>
main()
{
printf("EOF is %d\n", EOF);
}
/*
Output:
EOF is -1
*/
版权声明:本文为博主原创文章,未经博主允许不得转载。
C - The C Answer (2nd Edition) - Exercise 1-7
标签:exercise 1-7
原文地址:http://blog.csdn.net/troubleshooter/article/details/46852321