Computer Science, asked by kohli2175, 5 months ago

Discuss any 3 file modes used in C++.

Answers

Answered by himanshu2006vps
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