create a C++ program solution for
Chapter #7 Programming Challenges #21 “2D Array Operations” on page
461 of the textbook.
2) You must use good programming style as shown in the examples in the
textbook to include ample comments in your source code. You must include
helpful information in a header block such as the program description, the
source of your program, your name, and the date.
3) Your program must use a 2-dimensional array of integers of 2 rows and 5
columns. The first row must have the values 5, 10, 8, 7, and 3. The second
row must have the values 4, 9, 6, 2, and 1.
4) You must input your data for the array from a file (e.g. “Program7.txt”).