Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Welcome To Ask or Share your Answers For Others

Categories

0 votes
805 views
in Technique[技术] by (71.8m points)

adding a newline to file in C++

Can any body help me with this simple thing in file handling?

The following is my code:

#include<iostream>
#include<fstream>
using namespace std;
int main()
{
  ofstream savefile("anish.txt");
 savefile<<"hi this is first program i writer" <<"
 this is an experiment";
 savefile.close();
  return 0 ;
 }

It is running successfully now, I want to format the output of the text file according to my way.

I have:

hi this is first program i writer this is an experiment

How can I make my output file look like the following:

hi this is first program

I writer this is an experiment

What should I do to format the output in that way ?

See Question&Answers more detail:os

与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome To Ask or Share your Answers For Others

1 Answer

0 votes
by (71.8m points)
#include <fstream>
using namespace std;

int main(){
 fstream file;
 file.open("source\file.ext",ios::out|ios::binary);
 file << "Line 1 goes here 

 line 2 goes here";

 // or

 file << "Line 1";
 file << endl << endl;
 file << "Line 2";
 file.close();
}

Again, hopefully this is what you want =)


与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…
Welcome to OStack Knowledge Sharing Community for programmer and developer-Open, Learning and Share
Click Here to Ask a Question

...