Quote:
Originally Posted by NaS
No, "..." can be used to continue a row, like:
new Var[MAX_PLAYERS] = {(-1), ...};
This will set every Slot in "Var" to (-1). You can also do {1, 3, ...};, this will make them 1, 3, 1, 3 etc.
But there is no use for you in this specific case.
|
Oh yea while replying i forgot about that.Anyways thanks for reminding.