[Archive!] Any rookie question, so as not to clutter up the forum. Professionals, don't pass it by. Couldn't go anywhere without you - 2. - page 374
You are missing trading opportunities:
- Free trading apps
- Over 8,000 signals for copying
- Economic news for exploring financial markets
Registration
Log in
You agree to website policy and terms of use
If you do not have an account, please register
how to rewrite an expression like
((a)<(b) ? (a) : (b)) in MQL4
how to rewrite an expression like
((a)<(b) ? (a) : (b)) in MQL4
but how do you write int **X which corresponds to **
This is a pointer to a pointer to a variable of int type.
int X[][];
But that's not quite right.would amount to
int **X
to this
int@ X[]
???