Is it possible to take an array of say 100 chars and turn it into a 2d array of 10*10?
Tell me more
×
Stack Overflow is a question and answer site for
professional and enthusiast programmers. It's 100% free, no registration required.
|
|
Here you go
Now the this code...
...prints the following
|
|||
|
|
|
Iterate throughout your list of 100 chars and divide it amongst the 10*10, Modulus (%) will probably be very useful. You could use 2 nested for loops to assign the chars of the array to the appropriate element. |
|||
|
|