1. Give the results to the following operations(10 points)
0xABCD ^ 0x0F0F = 0xA4C2
0xA15C | 0x9753 = 0x B75F
0xB5 & 0x13 = 0x 11
2. Assume sizeof(int)=4,give the results to the following calculations(10 points)
int uwData[50];
Sizeof(uwData)= 200
typedef struct
{
Char *pData[50];
} MemStru;
Sizeof(MemStru)= 200
解析: