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