Create a flowchart and write a complete C++ program that declares a 2 dimensional integer array of size 10 rows and 10 columns. The program should use two nested for loops to fill the array with the even numbers beginning with 2 in the [0][0] element and filling the first row with 2, 4, 6, 8, 10, 12, 14, 16, 18, 20 and then continuing on the second row with 22, 24, etc… The program should then use nested for loops to print the array in table form to the screen.
I am using Microsoft Visual Studio.
I understand one dimensional arrays and I have no idea of how to write a program for the above question. Please help!