Question
Write a program in C++ that merges the numbers in two files and writes all the numbers into a third file. Your program takes input
Write a program in C++ that merges the numbers in two files and writes all the numbers into a third file. Your program takes input from two different files and writes its output to a third file. Each input file contains a list of numbers of type int in sorted order from the smallest to the largest. After the program is run, the output file will contain all the numbers in the two input files in one longer list in sorted order from largest to smallest in the format given below. Your program should define a function that is called with the two input-file streams and the output-file stream as three arguments.
Values in Input File1: 6 10 15 22 33 77 88 99
Values in Input File2: 30 40 50 60 62 89
Step by Step Solution
There are 3 Steps involved in it
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started