henrimaselati
2010-03-15 08:21:40 UTC
how can i refer to an array for example:
arr1=[1,2,3,4]
arr2=[7,6,5,4]
arr3=[6,23,45,24]
for (i=1;i<4;i++){
ARRR=arr+i // <----------- this is what i want to do, but it doesnt work, any ideas?
if (ARRR[0]==7) the_function_i_want_to_call();
}
plz dont tell me why i am doing it, this is just an example to be able to loop thru the arrays: arr