How to add (combined) three text files into one text file in C++

1 Answer

0 votes
#include <iostream>
#include <fstream>

using std::cout;
using std::endl;
using std::ifstream;

int main()
{
	ifstream ifs1("d:\\data.txt");
	ifstream ifs2("d:\\test.txt");
	ifstream ifs3("d:\\file.txt");

	std::ofstream combined_files("d:\\combined_files.txt");

	combined_files << ifs1.rdbuf() << ifs2.rdbuf() << ifs3.rdbuf();

	ifs1.close();
	ifs2.close();
	ifs3.close();
	combined_files.close();

	return 0;
}

/*
run:

combined_files.txt
------------------
c c++
c# java php python
C++ Programming
We love to code 2018

*/

 



answered Jun 11, 2018 by avibootz

Related questions

...