I have 2D array, i want to erase, delete, or reset to value 0 just one row. exmple;
0 0 0 0 0 0
0 0 1 1 1 1
1 1 1 1 1 0
0 0 0 0 0 0
[/code:210qir2l]
and i want to reset the value of row number 3 (Y 2), how to do this? so the array can become;
[code:210qir2l]
0 0 0 0 0 0
0 0 1 1 1 1
0 0 0 0 0 0
0 0 0 0 0 0
[/code:210qir2l]
Please help me.