【程序员面试宝典】第7章,面试例题6
what result after run the following code
#include<stdio.h>void learn7_6(){ int *ptr; ptr=(int *)0x8000; *ptr=0xaabb;}