Question: This program to display the elements of 2-D array by passing in to a function. #include using namespace std; void display (int n[3] [2]); =

 This program to display the elements of 2-D array by passing

This program to display the elements of 2-D array by passing in to a function. #include using namespace std; void display (int n[3] [2]); = int main () { int num [3] [2] {{3,4}, {9,5}, {7,1}}; display (num); return 0; } void display (int n [3] [2]) { cout

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!