Discussion :: Input / Output
-
Which of the following operations can be performed on the file "NOTES.TXT" using the below code?
FILE *fp; fp = fopen("NOTES.TXT", "r+");
Answer : Option D
Explanation :
r+ Open an existing file for update (reading and writing).
Be The First To Comment