We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent af06562 commit 5169235Copy full SHA for 5169235
docs/memory.md
@@ -234,7 +234,7 @@ int* restrict p;
234
p = malloc(sizeof(int));
235
```
236
237
-上面示例中,声明指针变量`p`时,加入了`restrict`说明符,使得`p`变成了受限指针。后面,当`p`指向`malloc()`函数返回的一块内存区域,就味着,该区域只有通过`p`来访问,不存在其他访问方式。
+上面示例中,声明指针变量`p`时,加入了`restrict`说明符,使得`p`变成了受限指针。后面,当`p`指向`malloc()`函数返回的一块内存区域,就意味着,该区域只有通过`p`来访问,不存在其他访问方式。
238
239
```c
240
int* restrict p;
0 commit comments