Write a function in C++ to print the product of each column of a two dimensional integer array passed as the argument of the function.
Explain : If the two dimensional array contains
1 2 4
3 5 6
4 3 2
2 1 5
The output should appear as :
Product of Column 1 = 24
Product of Column 2 = 30
Product of Column 3 = 240
Comments
Leave a comment