SomeThing what i discover

1. 指针常量

  int a[3] = {1, 2, 3};

  const int *b = a;

  b[0], b[1], b[3] 都是 read_only location

原文地址:https://www.cnblogs.com/yetanghanCpp/p/8806196.html