Thread: Arrays in MQL4
View Single Post
  #3 (permalink)  
Old 04-07-2007, 06:59 PM
clippertm clippertm is offline
Junior Member
 
Join Date: Feb 2007
Posts: 7
clippertm is on a distinguished road
Hello Ralph!

Thank you very much for your reply!

So if my understanding is correct,

Code:
int data_z[51];
would result in:

0
.
.
.
50

and

Code:
 int x = 2 ;
int data_x[x][6];
would result in something like:
0 0
1 1
2 2
3 3
4 4
5 5


?
Reply With Quote