cplusplus
.com
TUTORIALS
REFERENCE
ARTICLES
FORUM
C++
Tutorials
Reference
Articles
Forum
Forum
Beginners
Windows Programming
UNIX/Linux Programming
General C++ Programming
Lounge
Jobs
Forum
Beginners
2D array display
2D array display
May 17, 2009 at 7:49pm UTC
chemser101
(4)
how do i code a loop to display a 2d array of chars???
May 17, 2009 at 8:23pm UTC
Duthomhas
(13206)
You need too loops, one on the outside and one on the inside -- called a "nested loop".
The outside loop should concern itself with lines/rows.
The inside loop should concern itself with columns/chars.
Now you'll have to go think about it. Good luck!
Topic archived. No new replies allowed.