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

21 lines
464 B
Markdown
Raw Normal View History

2019-01-27 22:02:55 +01:00
# c99
> Compila programmi C secondo lo standard ISO C.
> Maggiori informazioni: <https://manned.org/c99>.
2019-01-27 22:02:55 +01:00
- Compila file sorgente/i e crea un eseguibile:
`c99 {{file.c}}`
- Compila file sorgente/i e crea un eseguibile con un nome personalizzato:
`c99 -o {{nome_eseguibile}} {{file.c}}`
- Compila file sorgente/i e crea file oggetto:
`c99 -c {{file.c}}`
- Compila file sorgente/i linkando con file oggetto e crea un eseguibile:
`c99 {{file.c}} {{file.o}}`