这一题目是测试你是否知道为了访问一绝对地址而把一个整型数强制转换成一个指针。
int *ptr;
ptr =(int *)0x67a9;
*ptr= 0xaa66;
或者:
*(int *const)(0x67a9)=0xaa66;