mirror of
https://github.com/wangdoc/clang-tutorial.git
synced 2026-02-11 06:35:43 +08:00
docs(function): fix typo
This commit is contained in:
@@ -216,7 +216,7 @@ if (print == &print) // true
|
||||
```c
|
||||
void (*print_ptr)(int) = &print;
|
||||
// 或
|
||||
void (*print_ptr) = print;
|
||||
void (*print_ptr)(int) = print;
|
||||
|
||||
if (print_ptr == print) // true
|
||||
```
|
||||
|
||||
Reference in New Issue
Block a user