README.md

December 5, 2022 ยท View on GitHub

C++ File I/O Examples

Description

This demonstrates an example of C++'s fstream File I/O. Very simple; the basic stuff for beginners to learn from. If you would like to see how to do something more in the direction this code leads, comment on (and rate) it telling me what specifically you want to see and I'll be glad to suffice.

More Info

Submitted On
By*LuckY*
LevelBeginner
User Rating4.2 (59 globes from 14 users)
CompatibilityC++ (general)
CategoryFiles
WorldC / C++
Archive File

Source Code

//
// lucky760@yahoo.com
//
#include <fstream>
const char *FILENAME = "FILE.txt";
int main() {
	//create output object associated w/ file
	ofstream fout(FILENAME);
	cout << "Enter your secret password: ";
	char str[60];
	cin >> str;
	//write to file
	fout << "This is your secret password. Don't give it to anyone!\n";
	fout << str;
	//close file
	fout.close();
	cout << endl;
	ifstream fin(FILENAME);
	char ch;
	while (fin.get(ch))
		cout << ch;
	fin.close();
	return 0;
}