Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,870 questions

51,793 answers

573 users

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

1 answer 187 views
1 answer 98 views
1 answer 225 views
1 answer 166 views
166 views asked Jun 10, 2018 by avibootz
1 answer 173 views
173 views asked Jun 9, 2018 by avibootz
...