yossi
05-19-2004, 05:50 AM
Is there a way to access an array's element such as:
int array[10];
int index = 1;
int b = array[index];
The compiler report error of 'indirect access not aloud'.
How can I bypass this problem?
Many thanks,
Yossi
int array[10];
int index = 1;
int b = array[index];
The compiler report error of 'indirect access not aloud'.
How can I bypass this problem?
Many thanks,
Yossi