C語言基礎之const
阿新 • • 發佈:2021-01-30
技術標籤:c/c++基礎
- 以下哪一個初始化操作不合法:
int i = -1;
const int ic = i;
const int *pic = ⁣
// int *const cpi = ⁣// compile error
// cannot initialize a variable of type 'int *const'
// with an rvalue of type 'const int *'
int main()
{
return 0;
}