hi paul.... i dont know much about c/cpp, but afaik you can or simple must do it, by using an array and directly store the datas to it...
DIM aYourArray ; i dont really know atm how to write it in C/CPP
{
1,2,3
2,4,6
4,5,1
}
Edit, possible it must look like this:
Int aYourArray[10] = { 1, 2, 3, 2, 4, 6, 4, 5, 1 };