编写程序打印EOF的值

#include stdio.hint main(void){printf(The value of EOF is %d.\\n, EOF);return 0;//

编程学习网为您整理以下代码实例,主要实现:编写程序打印EOF的值,希望可以帮到各位朋友。

#include <stdio.h>

int main(voID)
{
    printf("The value of EOF is %d.\n", EOF);
    return 0;//
}

本文标题为:编写程序打印EOF的值

基础教程推荐