![](https://secure.gravatar.com/avatar/225616931990d8d9aa9e48ff3ae2e1d8.jpg?s=120&d=mm&r=g)
7 Jan
2022
7 Jan
'22
1:05 p.m.
Dana, I realize that this example is a 2D array, but does this workaround accomplish what you want? int meta[2][2]; [0, 1, 2, 3] @=> int b[]; [10, 11, 12, 13, 14, 15] @=> int c[]; b @=> meta[0]; c @=> meta[1]; for (int i; i< b.size(); i++) { <<< " b["+i+"] ==", meta[0][i] >>>; } for (int i; i< c.size(); i++) { <<< "c["+i+"] ==", meta[1][i] >>>; } Santé, davd ----------------- David Loberg Code School of Music Western Michigan code@wmich.edu any pronouns ________________________________