If i have got an array, let's say with two dimensions, something like
and i would like to clear out one dimension completely, i could say something like
Code:
Testarray[3] = {0,0,0,0,0}
My question is: is there a better way, so i don't have to give every single value of this dimension? I read about something i could say
Code:
Testarray[3] = {0, ...}
but it seems no to work as expectet. Someone my have a better idea?
__________________