Can someone help me with a c code Create a program that disp
Can someone help me with a c++ code
 Create a program that displays a table consisting of four rows and five columns. The first column should display the numbers 1 through 4. The second and subsequent columns should display the result of multiplying the number in the first column by the numbers 2 through 5. If necessary, create a new project named Introductory 14 Project, and save it in the Cpp8\\Chap08 folder. Enter the C++ instructions into a source file named Introductory 14.cpp. Also enter appropriate comments and any additional instructions required by the compiler. Save and then run the program.Solution
Please follow the code and comments for description :
CODE :
#include <iostream> // required header files
 #include <string>
using namespace std;
int main() // driver method
 {
 cout << \"Row and Column Data.\" << endl; // prompt for the user about the code
 int matrix[4][5]; // array initialisation
 for(int i = 1; i <= 4; i++){ // iterating over the loop of rows
         for(int j = 1; j <= 5; j++) { // iterating over the loop of columns
              matrix[i][j] = i*j; // setting the required data
             cout << matrix[i][j] << \" \"; // priniting the data                  
          }
         cout << endl;
     }
    return(0);
 }
 OUTPUT :
Row and Column Data.
 1 2 3 4 5
 2 4 6 8 10
 3 6 9 12 15
 4 8 12 16 20
 Hope this is helpful.

