About character pointers in C

后端 未结 7 996
再見小時候
再見小時候 2020-12-11 08:02

Consider this definition:

char *pmessage = \"now is the time\";

As I see it, pmessage will point to a contiguous area in the memory contain

相关标签:
7条回答
  • 2020-12-11 08:49

    The literal value of pmessage goes into code, and in most cases they are placed in code memory. Which is read only

    0 讨论(0)
提交回复
热议问题