I am trying to use Code::Block, But I still get some problem like when I'm using DevC++. In Watch Windows, I want to see A array. (example: int A[5][5]). but in debug windows, I will appear from top to down:
A[1][1]
A[1][2]
...
A[5][5]
This style is to difficult for me to trace an Double Array. I want to view like Free-Pascal:
A[1][1] A[1][2] A[1][3]...
A[2][1] A[2][2] A[2][3]...
....
A[5][1] A[5][2] A[5][3]...
Who know this problem, please answer to me please :(
thanks for all :)