+ 6
how this works
In this ' i ' array is not decalared https://code.sololearn.com/clQIE7mWkwdE/?ref=app
1 Respuesta
+ 8
a[i] is the same as *( a + i )
i[a] simply swaps the lhs and rhs: *( i + a )
since the + operator is commutative it doesn't matter on which side the operands are, the result is the same either way.