Answers for "ifstream and fstream c++"

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

Browse Popular Code Answers by Language