1
0
Fork 0
mirror of https://github.com/tldr-pages/tldr.git synced 2025-08-15 14:55:44 +02:00

Merge pull request #790 from oxguy3/patch-4

c99: add page
This commit is contained in:
Leandro Ostera 2016-02-23 11:59:57 +01:00
commit 4a49782f31

19
pages/common/c99.md Normal file
View file

@ -0,0 +1,19 @@
# C99
> Compiles C programs according to the ISO C standard.
- Compile source file(s) and create an executable:
`c99 {{file.c}}`
- Compile source file(s) and create an executable with a custom name:
`c99 -o {{executable_name}} {{file.c}}`
- Compile source file(s) and create object file(s):
`c99 -c {{file.c}}`
- Compile source file(s), link with object file(s), and create an executable:
`c99 {{file.c}} {{file.o}}`