I'm having problem with storing values in multi dimensional arrays. I need to have 10 * 10 array with rows and columns. I have intitialized the array with blank spaces " ". But after this I need to store letters like 'A' 'C' 'S' on specific locations in that array.
for example
0 1 2 3 4 5 6 7 8 9
0
------------------------------------------
1
-------------------------------------------
3
--------------------------------------------
4
--------------------------------------------
5
------------------------------------------
6
-------------------------------------------
7
-------------------------------------------
8
--------------------------------------------
9
--------------------------------------------
First question, do I print this layout board using for loop?
Second, that how would i put character 'A' in location Row = 0 and Column = 5???
and then display it
I know these questions are really basic but I'm just a beginner.
Thanks