17

不定项选择题 17 /101

有以下表达式:
int a = 248, b = 4;
int const c = 21;
const int *d = &a; 
int *const e = &b;
int const * const f = &a; 
请问下列表达式哪些会被编译器禁止?

参考答案

*c=32
*d=43
e=&a
f=0x321f
d=&b
*e=34