c_cpp 有助于澄清C中的const规则

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了c_cpp 有助于澄清C中的const规则相关的知识,希望对你有一定的参考价值。

#include <stdio.h>

int main(void) {
  int f[3] = {1, 2, 3};
  // pointer to const int
  const int* a = f;
  // const pointer to int
  int* const b = f;
  b++; // doesn't work
  printf("Hello World\n");
  return 0;
}

以上是关于c_cpp 有助于澄清C中的const规则的主要内容,如果未能解决你的问题,请参考以下文章

c_cpp const指针

c_cpp 使用const cast

c_cpp 在const char **中使用strtod

c_cpp 如何在C中将const char *转换为char *?

c_cpp const.pde Arduino预定义常量

c_cpp 安全地将const wchar_t *复制到wchar_t *