Comment on Strangest Programming Language Feature?parentComments−rodrodrod12yFrom the c standard[0]:The definition of the subscript operator [] is that E1[E2] is identical to (* ((E1)+(E2))).Since * (E1 + E2) is commutative, E1[E2] == E2[E1].[0] http://c0x.coding-guidelines.com/6.5.2.1.html
Comments
From the c standard[0]:
Since * (E1 + E2) is commutative, E1[E2] == E2[E1].
[0] http://c0x.coding-guidelines.com/6.5.2.1.html