const 在 C 语言中的用法
const 是 C 语言中的一个关键字,用于定义常量。常量的值在编译时确定,在程序运行时不能被修改。
语法
<code class="c">const type variable_name = value;</code>
const 在 C 语言中的用法
const 是 C 语言中的一个关键字,用于定义常量。常量的值在编译时确定,在程序运行时不能被修改。
语法
<code class="c">const type variable_name = value;</code>
之前