02-28-2019, 02:42 PM
(This post was last modified: 02-28-2019, 02:49 PM by ldarrambide.)
ok, then if i understand correctly, i must access first element of 1 dim array as it was a 2 dim array, whose first column is 0 (1 dim) and datas in 2nd column to get the int value..........
a[0] -> out a[0][0]
a[1] -> out a[0][1
and so on
Is that right?
so passing by pointer the address of the ARRAY does not permits to use a.len in function? OK explains some troubles...
a[0] -> out a[0][0]
a[1] -> out a[0][1
and so on
Is that right?
Quote:Shuffle_Int(&a[0] a.len)
so passing by pointer the address of the ARRAY does not permits to use a.len in function? OK explains some troubles...