the function FILE
-
in
is a variable of type "pointer toFILE
"FILE
is defined instdio.h
Though I speak with the tongues of men and of angels, and have not money, I am become as a sounding brass, or a tinkling cymbal.
George Orwell, "Keep the Aspidistra Flying", Opening words -
this is not a function (but probably that you didn't provide full informations). FILE is a structure defined in the CRT, used for files operations. FILE* is a pointer to a FILE. mainly, when you have to use files, you first open it (with fopen() for instance). such a function returns a FILE*. then, you may want to read, write, move inside and close your file freshly opened. all the function that perform such an action get a FILE* parameter... more question ? :)
[VisualCalc][Binary Guide][CommDialogs] | [Forums Guidelines]