C++ Tutorial for Beginners 42 -Create a Text File and Write in It













1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
///ofstream: Stream class to write on files
///ifstream: Stream class to read from files
///fstream: Stream class to both read and write from/to files.
#include <iostream>
#include <fstream>
using namespace std;

int main()
{
ofstream file_("mytext.txt");
// file_.open("mytext.txt");
if(file_.is_open()){
file_ << "this is my first text file 1 \n";
file_ << "this is my first text file 2 \n";
file_ << "this is my first text file 3 \n";
file_ << "this is my first text file 4 \n";
file_.close();
}

std::cin.get();
return 0;
}














Input/output with files - C++

Creating and writing to a file

Creating/Writing File (Win32)

Changable filename based on user input

Reading and Writing to a txt file.

fstream -- writing to files - C++ Forum

How to: Write a Text File

save - How to create text file in c++?

how to create a txt file in c++

c++ reading from txt file

Reading lines from txt file

Reading Line by Line from Text File into

Saving and Loading from a text file

Reading and Writing to a txt file.

php create text file and write to it

vb.net create text file and write to it

vbscript create text file and write to it

java create text file and write

Comments