0
What should be the value of the index x[1], and x[2] ? See details below...
I have a variable named i =0; and I have an array, for example: int[] x = {i,i++,i++}; What should be the value of the index x[1], and x[2] ?
1 Resposta
+ 1
I've just tested, and x[1] is 0 and x[2] is 1.