Answers for "c++ ofstream"

C++
4

fstream in c++

#include<fstream>
int main()
{
  fstream file; 
  /*if we use fstream then we need to specify at least one 
  parameter mode like ios::out or ios::in else the file will not open */  
  file.open("filename.txt", ios::out|ios::in);
  /*all work with file*/
  file.close();
  return 0;
}
Posted by: Guest on March-26-2021
0

ofstream c++

ofstream file;
file.open("file.txt");
file << {data} << endl;
file.close();
Posted by: Guest on November-12-2021

Browse Popular Code Answers by Language