常量指针与指针常量?

常量指针与指针常量?

常量指针:

  • 修饰指针
  • const int * p;

指针常量:

  • 修饰指针指向的内容
  • int * const p;
    详细请参照博客https://blog.csdn.net/weibo_dm/article/details/80445205

你可能感兴趣的:(linux)