add new chinese translations

This commit is contained in:
2024-12-30 15:25:56 +08:00
parent a850046d7b
commit 0d798759fd
5418 changed files with 105800 additions and 7052 deletions

20
pages.zh/common/c99.md Normal file
View File

@@ -0,0 +1,20 @@
# c99
> 根据 ISO C 标准编译 C 程序。
> 更多信息:<https://manned.org/c99>。
- 编译源文件并创建可执行文件:
`c99 {{file.c}}`
- 编译源文件并指定可执行输出文件名:
`c99 -o {{executable_name}} {{file.c}}`
- 编译源文件并创建目标文件:
`c99 -c {{file.c}}`
- 编译源文件,与目标文件链接,并创建可执行文件:
`c99 {{file.c}} {{file.o}}`