How to append text to the end of a text file in C++

1 Answer

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

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

void print(char *filename)
{
	std::ifstream fin(filename);
	if (fin) {
		char ch;
		while (fin.get(ch))
			cout << ch;
	}
	fin.close();
}

int main()
{
	char filename[32] = "d:\\data.txt";

	std::ofstream ofs(filename, std::ios::app);
	if (!ofs) {
		cout << "Error open file for appending" << endl;
		return 1;
	}

	char s[64] = "python";
	ofs << s << "\n";
	ofs.close();

	print(filename);

	cout << endl;

	return 0;
}

/*
run:

c
c++
c#
java
php
python

*/

 



answered Jun 6, 2018 by avibootz

Related questions

3 answers 308 views
1 answer 169 views
169 views asked Jul 7, 2020 by avibootz
1 answer 217 views
217 views asked Jul 15, 2015 by avibootz
1 answer 202 views
1 answer 197 views
2 answers 234 views
1 answer 248 views
...