Search
 
SCRIPT & CODE EXAMPLE
 
CODE EXAMPLE FOR CPP

file handling read and write in c++

#include <iostream>
#include <fstream>

using namespace std;

int main(){
  fstream file;
  file.open ("example.txt", ios::out | ios::in );
  return 0;
}
Source by www.codesdope.com #
 
PREVIOUS NEXT
Tagged: #file #handling #read #write
ADD COMMENT
Topic
Name
3+6 =