C程序设计语言 练习1-7

版权声明:转载时打个招呼。 https://blog.csdn.net/qq_15971883/article/details/89503684

练习1-7:编写一个打印EOF值的程序。

/* 编写一个打印 EOF 值的程序 */

#include <stdio.h>

int main(int argc, char** argv)
{
    printf("EOF is %d\n", EOF);

    system("pause"); 

    return 0; 
}

猜你喜欢

转载自blog.csdn.net/qq_15971883/article/details/89503684