Can I write to a const member of a non-const struct?

佐手、 提交于 2019-12-04 20:53:15

Modyfing an object declared with const qualifier invokes undefined behavior.

According to the Standard (emphasis mine):

C11 6.7.3/6 Type qualifiers

If an attempt is made to modify an object defined with a const-qualified type through use of an lvalue with non-const-qualified type, the behavior is undefined.

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!