Home » Archives for September 10th, 2009
File Operations in C++
File Operations in C++:
The data files can he opened into different modes. These modes are defined in “ios” class. The resolution operator (::) is used between the “ios” and the mode code. The different file operation modes and their uses are:
ios : : out Opens file in output mode to write data into the file. If the file with same name already exists on the...