Answered step by step
Verified Expert Solution
Link Copied!

Question

1 Approved Answer

Create a new file inFile.txt and write some words to it Write a program that reads from a file (inFile.txt) and writes everything to a

Create a new file inFile.txt and write some words to it

Write a program that reads from a file (inFile.txt) and writes everything to a second file (outFile.txt)

Recall: getline(cin, string)

This is what I have so far:

#include #include using namespace std;

int main() { ifstream inStream; ofstream outStream; inStream.open("inFile.txt"); outStream.open("outFile.txt"); int fileNum1 = 0; int fileNum2 = 0; inStream >> fileNum1; outStream << fileNum2 << endl; inStream.close(); outStream.close(); return 0; }

Step by Step Solution

There are 3 Steps involved in it

Step: 1

blur-text-image

Get Instant Access to Expert-Tailored Solutions

See step-by-step solutions with expert insights and AI powered tools for academic success

Step: 2

blur-text-image

Step: 3

blur-text-image

Ace Your Homework with AI

Get the answers you need in no time with our AI-driven, step-by-step assistance

Get Started

Recommended Textbook for

Essential Data Protection For Estate Agencies In Singapore 2024

Authors: Yang Yen Thaw Yt

1st Edition

B0CQK79WD3, 979-8872095392

More Books

Students also viewed these Databases questions

Question

demonstrate the importance of induction training.

Answered: 1 week ago