06.08.2013, 08:16
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.
".." is only for the switch/case statement.
But there is no use for you in this specific case.
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.
".." is only for the switch/case statement.
But there is no use for you in this specific case.