We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
d中,p3是const指针,已经存在了就不能再变化,不能再将&ic的值赋给p3; e中,同d,p2是const指针,已经初始化就不能再变化; f中,ic已经是一个常量,*p3也是一个常量,不能进行赋值操作
The text was updated successfully, but these errors were encountered:
我也觉得d,e,f都错了,题目说的是已经有上一个练习中定义的那些变量,而常量指针以及常量必须初始化,所以在2.29中等号相当于赋值操作,显然不正确。
Sorry, something went wrong.
+1
No branches or pull requests
d中,p3是const指针,已经存在了就不能再变化,不能再将&ic的值赋给p3;
e中,同d,p2是const指针,已经初始化就不能再变化;
f中,ic已经是一个常量,*p3也是一个常量,不能进行赋值操作
The text was updated successfully, but these errors were encountered: