question about functions and arrays?

If i have a array with a size of lets say [10][b] where b is changing throughout the program. When i have a function in the int function (
am i allowed to put int somearray[][] and the computer will fill in the amount of spaces needed from the input received or do i have to put in int somearray[10][b]
you can't dynamically create arrays unless you use the new keyword.

Vectors are probably what you need.
Topic archived. No new replies allowed.