0
Passing 2D Array To Function In C++.
How to pass 2d array to a function when size of that array was taken by the user.
3 Respuestas
+ 3
Hamad Badar Using single * will make your array behave like a normal 1d Array, using double * allows you to create a 2d array.
0
But what if we use single pointer *, instead of double..
0
Astralis. Thank you...