just a quick question, will b600+ be able to do this arr[i++] ?

 

Will mt4 b600+ accept this ?

Instead of

i++;arr[i] = x;

just

  arr[(i++)] = x;
  // or
  arr[i++] = x; 

Thanks in advance

Gooly

 
gooly:

Will mt4 b600+ accept this ?

Instead of

just

What happened when you tried it ?
 
RaptorUK:
What happened when you tried it ?

can't try, haven't installed it yet.
 
Mql5 does per docs, so I assume mql4++ will
func(a[i],a[i++],"First call (i = "+string(i)+")");
 
WHRoeder:
Mql5 does per docs, so I assume mql4++ will

Thank you!