常量指針與指針常量

(1)常量指針,表示指針指向的地址的內容不可改變ios (2)指針常量,表示指針指向的地址不可改變,必須聲明時進行初始化指針 #include <stdio.h> #include <iostream> int main(int argc, char *argv[]) { // 常量指針,表示指針指向的地址的內容不可改變 const int a = 1; const int *pa = &
相關文章
相關標籤/搜索