C Programming :: Input / Output
-
Consider the following program and what will be content of t?
#include
int main() { FILE *fp; int t; fp = fopen("DUMMY.C", "w"); t = fileno(fp); printf("%d\n", t); return 0; }