c
Some checks are pending
Deploy / build (push) Waiting to run
Deploy / Deploy (push) Blocked by required conditions

This commit is contained in:
许大仙 2024-10-08 17:24:08 +08:00
parent dea726753d
commit bb62cee225

View File

@ -2077,7 +2077,7 @@ int main() {
> >
> const 通常用在函数形参中,如果形参是一个指针,为了防止在函数内部修改指针指向的数据,就可以用 const 来限制。 > const 通常用在函数形参中,如果形参是一个指针,为了防止在函数内部修改指针指向的数据,就可以用 const 来限制。
* 在 C 语言标准库中,有很多函数的形参都被 const 限制了,下面是部分函数的原型: * 在 C 语言标准库中,有很多函数的形参都被 const 修饰了,下面是部分函数的原型:
```c ```c
size_t strlen ( const char * str ); size_t strlen ( const char * str );