const在C語言中的用法

在C語言中,const修飾的變量具備常屬性,不能夠修改它的值。 例如: const int num=10; int const num=10; //變量num的值不能夠被改變 可是它又和變量有一些區別,例如: #define line 10 const int num=10; 雖然它們的值都是10,並且都不能改變,可是用在數組中就不同了。例如: int arr[line] //line是常量,
相關文章
相關標籤/搜索