I'm using DevC++ 4.9.9 and have a problem while I'm debugging: I want to view array C so I will: press F4 and type C.
but for my example: if my code is:
for(i=1;i<=10;i++)
for(j=1;j<=10;j++) c[i][j]=10;
the left panel (that I saw value) will have 100 line of C. (each line corresponding to each status of variable i and j) ( (1,1)(1,2)...(1,10)...(10,10))
I just one ONE line, and each time array C change, just only that line change (not have other line).
So who can help me please, thanks so much :)