0
So, a multi-dimensional array can have any amount of integers?
2 Answers
+ 1
it can hold its limitations... so
int a [5][5] can hold a max of 25
int b [9][2] can hold 18 etc.
these numbers can be as big as you want. assuming that you dont make it so big that you run out of heap space...
hope this helps!
+ 1
thank you. it never really gave limitations.