Academic Integrity: tutoring, explanations, and feedback — we don’t complete graded work or submit on a student’s behalf.

I need help with programming in visual C++. I need to write afunction called tra

ID: 3617273 • Letter: I

Question

I need help with programming in visual C++. I need to write afunction called transpose() that takes a 2x3 array argument and a3x2 array argument and fills the 3x2 array with the trasposed 2x3array. Then call transpose() from main () and test it withhardwired values. I need help with programming in visual C++. I need to write afunction called transpose() that takes a 2x3 array argument and a3x2 array argument and fills the 3x2 array with the trasposed 2x3array. Then call transpose() from main () and test it withhardwired values.

Explanation / Answer

please rate - thanks #include #include using namespace std; void transpose(int[][3],int[][2]); intmain()                                {int array2[3][2],array1[2][3]={1,2,3,4,5,6},i,j; cout