i got a a couple of different sized arrays of ptnumbers that i want to combine into one array to access them later
int num0[]= {55, 56, 5, 64, 115, 68 };
int num1[] = {35,5, 115};
int num2[] = {2, 8, 111, 119};
int num3[] = {25,3,8,41,37,59,63,118,113};
int arr[] = array( num0, num1, num2, num3 );
i[]@arr = arr;
---
if i run the above code i get {0,0,0} as contents of the array
I guess that has to do with my declaration as i@
---
I can write them all into array as one with append in
long list {1,2,3,4,5,6,7,8,9}
but i want to keep them
seperate as arrays( {{1,2,3}, {4,5,6,7}, {8,9,10,11,12} ....})
so i can run a foreach() over the arr
How would i do that?
--
Thanks in advance and for help and time.