Disliked- check the start and end values of the loop, and which way the counter is going. What you have now is going from index 0 (i=0), going down (i--, 0, -1, -2, -3...), as long as i is larger or equal to the array size (>=arrsize()).Ignored
Thank you very much for taking the time and for the detailed explanation. Thanks to you I am now able to draw lines using both static and dynamic arrays. I truly appreciate your valuable input and wish you the very best.
Regards.
1