Skip to main content

multidimensional arrays C++ - Multidimensional Arrays

When dealing with multidimensional arrays, is it possible to assign two different variable types to the array... 

For example you have the array int example[i][j]int example[i][j] is it possible for ii and jj to be two completely different variable types such as int and string?

multidimensional arrays

When dealing with multidimensional arrays is it possible to assign two different variable types to the array... For example you have the array int example[i][j] is it possible for i and j to be two completely different variable types such as int and string?

C++ - Multidimensional Arrays

When dealing with multidimensional arrays, is it possible to assign two different variable types to the array... 

For example you have the array int example[i][j] is it possible for i and j to be two completely different variable types such as int and string?

Source Link
Zud
  • 4.5k
  • 4
  • 28
  • 26

multidimensional arrays

When dealing with multidimensional arrays is it possible to assign two different variable types to the array... For example you have the array int example[i][j] is it possible for i and j to be two completely different variable types such as int and string?