Discuss any 3 file modes used in C++.
Answers
Answered by
0
Answer:
Mode l
__ab-- Open for append in binary mode. Data is added to the end of the file.
__r+-- Open for both reading and writing.
__rb+-- Open for both reading and writing in binary mode.
__w+ --Open for both reading and writing.
Similar questions