How does a 'const struct' differ from a 'struct'?

后端 未结 6 1479
刺人心
刺人心 2020-12-23 13:57

What does const struct mean? Is it different from struct?

6条回答
  •  醉梦人生
    2020-12-23 14:11

    Const means you cannot edit the field of the structure after the declaration and initialization and you can retrieve the data form the structure

提交回复
热议问题