Hi all,
I am attempting to assign values to a multidimensional array but am having difficulty.
This isn't the exact code that I'm using, but the idea is this:
for(int T=0; T<5; T++)
{
array[T][3][4] ={{4,2,6,4},{5,2,5,3},{6,3,1,5}}
}
For all T from T=0 to T=4, assign the same values shown above. That is:
Array[0][3][4] = Array[1][3][4] = ... = Array[4][3][4].
How can I go about doing this?
Thank you so much.