(Solved) : 9 Following Program Supposed Read Two Numbers File Named Inputdat Write Sum Numbers File N Q44053520 . . .
how to solve this for C++?

9. The following program is supposed to read two numbers from a file named input.dat and write the sum of the numbers to a file named output.dat However, it fails to do so. Rewrite the program so that it accomplishes what it is intended to do. (Also, include statements to close the files.) #include <iostream> #include <fstream> using namespace std; int main() int numl, num2; ifstream infile; outfile.open(“output.dat”); infile >> numi >> num2; outfile << “Sum = ” << numl + num2 << endl; return 0; Show transcribed image text 9. The following program is supposed to read two numbers from a file named input.dat and write the sum of the numbers to a file named output.dat However, it fails to do so. Rewrite the program so that it accomplishes what it is intended to do. (Also, include statements to close the files.) #include #include using namespace std; int main() int numl, num2; ifstream infile; outfile.open(“output.dat”); infile >> numi >> num2; outfile
Expert Answer
Answer to 9. The following program is supposed to read two numbers from a file named input.dat and write the sum of the numbers to…
OR