123变456那个代码目测是这样吧:
int y;
int *addr = &y;
addr++;
addr++;
int *b;
b = (int*) *addr;
b--;
b--;
*b = 456;