Hi, I need an advise. How can I a pass a multidimensional array into function parameter? I have this array dynamicaly allocated, so I don't know the size yet... Can anyone help pls?
firstly, http://www.cplusplus.com/forum/articles/17108/
if the array is dynamically allocated, to do anything with it, you have to have its size in a variable, so pass that variable too. Apart from that, I don't see your problem.