fopen
From cppreference.com
| Defined in header <stdio.h>
|
||
| FILE *fopen( const char *filename, const char *mode ); |
||
Opens a file indicated by filename and returns a file stream associated with that file. mode is used to determine the file access mode.
Parameters
| filename | - | file name to associate the file stream to | ||||||||||||||||||||||||||||||||||||||||
| mode | - | null-terminated character string determining file access mode
| ||||||||||||||||||||||||||||||||||||||||
Return value
Opened file stream on success, NULL on failure
See also
| C++ documentation for fopen
|