Header: stdio.h
Syntax:
extern FILE *fopen
(
const char * filename,
const char * mode
);
Purpose: This function opens the file whose name is in the string pointed to by filename, and associates a stream with it. mode has the same values as in freopen.
|
|
|