1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-04-29 23:24:55 +02:00
tldr/pages/common/c99.md

21 lines
472 B
Markdown
Raw Normal View History

# c99
2016-02-22 17:59:27 -05:00
> Compile C programs according to the ISO C standard.
> More information: <https://manned.org/c99>.
2016-02-22 17:59:27 -05:00
2016-02-22 19:35:42 -05:00
- Compile source file(s) and create an executable:
2016-02-22 17:59:27 -05:00
`c99 {{file.c}}`
- Compile source file(s) and specify the executable [o]utput filename:
2016-02-22 17:59:27 -05:00
`c99 -o {{executable_name}} {{file.c}}`
2016-02-22 19:35:42 -05:00
- Compile source file(s) and create object file(s):
2016-02-22 17:59:27 -05:00
`c99 -c {{file.c}}`
2016-02-22 19:35:42 -05:00
- Compile source file(s), link with object file(s), and create an executable:
2016-02-22 17:59:27 -05:00
`c99 {{file.c}} {{file.o}}`