Home » C Programming » 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+");

Correct Answer: Read and Write

Explanation:

r+ Open an existing file for update (reading and writing).

← Previous Question Next Question→

More Questions from Input / Output

Discussion & Comments

No comments yet. Be the first to comment!
Join Discussion