Saved Bookmarks
| 1. |
In C function fopen() with the mode "r+" tries to open the file for - [MCQ] |
|
Answer» "Function fopen() with the MODE ""R+"" tries to open the file for READING and writing. The C library function FILE *fopen(const CHAR *filename, const char *mode) OPENS the filename pointed to, by filename using the given mode. Parameters: filename − This is the C string containing the name of the file to be opened and mode - This is the C string containing a file access mode. It has −. " |
|