1. 程式人生 > 其它 >C語言基礎之const

C語言基礎之const

技術標籤:c/c++基礎

  1. 以下哪一個初始化操作不合法:
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;
}