Quote:
|
Originally Posted by Blackhawk
Now, if i use something like
Code:
Testarray[3] = {0,0,0,0,0}
on it, i wipe out the entire row. the Result would be like this:
Code:
0 1 2 3 4
0 33 22 54 24 54
1 11 22 52 54 99
2 35 12 45 86 53
3 0 0 0 0 0
4 43 36 44 67 44
|
Testarray[3] will look like this
and to zero that out it will be like this
Testarray[3] = {0,0,0};
but Testarray[3] = {0,...}; should work. did u try it?