c語言的關鍵字之修飾符

c語言關鍵字 1、const(被修飾的量不可修改) const修飾的是在它前面的類型,如果它前面沒有類型,那它修飾的是緊跟着它的那個類型。 const type name =value   或  type const name =value 1.1、修飾變量類型 const int i =0; 修飾後面的int 等價於 int const i=0; 修飾前面的int 1.2、修飾指針變量類型 co
相關文章
相關標籤/搜索