C語言const的用法

const:定義常變量,不能寫,只讀。 const還有下面三點須要注意的地方:spa 1、數據類型對於const而言是透明的 #include <stdio.h> int main() { const int a = 10; int const b = 20; //a = 100;//error //b = 200;//error         printf("%d\n",a);
相關文章
相關標籤/搜索