I realize that my example not correct in general. But interesting to find out how it works.
/* C/C++ (gcc-4.3.4) */
#include <stdio.h>
int main() {
/*volatile*/ int i = 5;
int j = 500;
int *p = &j;
printf( "%d %x\n", *p, p );
p++;
printf( "%d %x\n", *p, p ); // works correct with volatile (*p is 5)
//printf( "%d %x\n", *p, &i ); // works correct without volatile
return 0;
}
Is it some kind of optimization?
UPDT Ok i got about UB. I won't hope on another else.
BUT if i have 2 int vars which placed adjacent to each others (see addresses) why this code shouldn't works?

volatilethough. – Jerry Coffin Jul 17 '12 at 15:53p++;you're into the realm of Undefined Behaviour. – Paul R Jul 17 '12 at 15:54idefined asvolatilein your actual code in either case? – Doug Ramsey Jul 17 '12 at 15:55ineeds to be in memory ? It can just as easily be in a register or even be optimised away completely. – Paul R Jul 17 '12 at 16:02