Merge pull request #3 from alexkuang0/patch-1

Fix typo in docs/syntax.md
This commit is contained in:
Ruan YiFeng
2021-09-07 17:02:09 +08:00
committed by GitHub

View File

@@ -207,7 +207,7 @@ int main(void) {
}
```
上面示例中,只有在源码头部加上`#include <stdio.h>`,才能使用`printf()`这个函数。`#inclue`指令的详细解释,请看《预处理器》一章。
上面示例中,只有在源码头部加上`#include <stdio.h>`,才能使用`printf()`这个函数。`#include`指令的详细解释,请看《预处理器》一章。
### 占位符