Book a Demo!
CoCalc Logo Icon
StoreFeaturesDocsShareSupportNewsAboutPoliciesSign UpSign In
oorrja
GitHub Repository: oorrja/learntosolveit
Path: blob/master/languages/cprogs/Ex_1.7_eofval.c
1240 views
1
/**
2
* Program to print the value of EOF. EOF is a macro defined in stdio.h
3
*
4
**/
5
6
#include<stdio.h>
7
8
int main(void)
9
{
10
printf("The value of EOF is %d Assuming senthil is a total cupper.",EOF);
11
return 0;
12
}
13
14