Answers

Question and Answer:

  Home  ASP Programming

⟩ How do you initialize a two-dimensional array that you don’t know the dimensions of?

int [ , ] myArray; //declaration

myArray = new int [5, 8]; //actual initialization

 192 views

More Questions for you: