C語言中const用來定義常量。 const定義的變量在定義時要初始化,否則將會是一個隨機值,而且在定義後其值不能被改變。判斷下面幾條語句的作用: const int a;const int * const ip; int * const ip;const int * ip ...
blog.xuite.net