C++ function question

Started by
1 comment, last by Amsok 20 years, 11 months ago
Hello, I have a problem. I initialize a 2d array, and I want to return it using a function. But when I try to return it, it does not work. Could anyone help me out here? - making a function that returns a 2d array. thanks Amsok
Advertisement
a better solution might just be to pass it back as an argument because arrays are passed by reference by default. i suppose if you wanted to return an array, you could return a pointer to it...maybe..but that seems like it would be much more complicated than what you need.
How do you create the 2D array you want to return?

This topic is closed to new replies.

Advertisement