explain any three file mode parameters
Answers
Answered by
4
Answer:
To perform any file operations, C++ provides us a few file stream classes, such as -
ifstream, to perform the file input operations.
ofstream, to perform the file output operations.
fstream, to perform any file input and output operations.
Explanation:
Similar questions