Saved Bookmarks
| 1. |
List the different modes of opening a file with their meaning in C++. |
|
Answer» The methods of opening file within C++ program
Opening a file using constructor: The syntax for opening file for output purpose only is ofstream obj(“filename”); |
|