How to add (combined) two 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");

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

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

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

	return 0;
}

/*
run:

combined_files.txt
------------------
c c++
c# java php python
C++ Programming

*/

 



answered Jun 11, 2018 by avibootz

Related questions

1 answer 175 views
1 answer 184 views
184 views asked Jun 9, 2018 by avibootz
1 answer 142 views
142 views asked Jul 8, 2020 by avibootz
1 answer 116 views
1 answer 246 views
...