Hi,

I have a 2D string array storing all the details for a calendar.

A month is displayed as 20 chars across and 8 lines down. So it's a [12][8] string array that I'm trying to print outin a 3x4 grid so it's like

january february march
april may june
july august september
october november december

I have managed to print as far as march but i'm having hassle moving onto april. I can't even print out the first row of te grid 4 times..

Any ideas on how I would go apbout designing a loop for this??

Thanks..