Follow along with the video below to see how to install our site as a web app on your home screen.
Note: This feature may not be available in some browsers.
ifstream in(filename_in, ios::in);
ofstream out(filename_out, ios::out);
if(!in||!out){
cerr<<"error: input or output";
exit(1);
}
char ch[100];
while(in.getline(ch,100)){
out<<ch<<endl;
}
in.close();
out.close();