sd59:
I have a 2D array which I print to check on values:
the output looks like this:
Can anybody please let me know if it is possible to get the array values to print side by side?
Yes, of course . . .
Do this . . .
double array [][2]; ArrayResize(array, count); for(i = 0; i < count; i++) Print(array[i, 0], " ", array[i, 1] );
Great, thanks!

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
I have a 2D array which I print to check on values:
the output looks like this:
Can anybody please let me know if it is possible to get the array values to print side by side?
thanks