结构体指针
typedef struct prototype{
int a;
int b;
int c;
};
main()
{
int _receive;
_receive=0;
_receive=((prototype *)1245040)->a;//请问这一句是什么意思 和下面一句有什么联系 a的地址是 1245040?
//不是很明白 但是编译没有错误
_receive&=0xffff8722;
}
2012-05-07 14:59
2012-05-07 15:24