嵌入式C语言面试必备
摘要:
const关键词与指针 const意味着只读。修饰指针的三种形式: int const *p 等价于const int *p 指针的指向(p)可改,但是指针指向的内容(*p)不可改; int *const p a刚好与上面相反:(*p)可改,(p)不可改; int const * const p等价 阅读全文
posted @ 2019-09-11 13:28 B.Linux 阅读(868) 评论(0) 推荐(0) 编辑