I have a question about the precedence in an operation in C++. I have search for precedence in http://en.cppreference.com/w/cpp/language/operator_precedence and I read this question that is more or less the same array increment difference in C
I didn't get any clear conclusion. If I do
var >> array[n++];
Operator >> is for stream that is reading chars. ¿Where it is stored what I read? In n or in n+1?
Thank you