multiple pages(bzip2 to cake) : Add Korean Translation (#3579)

This commit is contained in:
Proscream
2019-11-20 02:17:05 +09:00
committed by Starbeamrainbowlabs
parent cb340e9341
commit 0d6ef290eb
4 changed files with 100 additions and 0 deletions

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

@@ -0,0 +1,19 @@
# c99
> ISO C 표준에 따라 C 프로그램을 컴파일한다.
- 원본 파일 컴파일 및 실행 파일 생성:
`c99 {{.c}}`
- 원본 파일 압축 및 사용자 정의 이름으로 실행 파일 생성:
`c99 -o {{생성할_실행파일_이름}} {{파일명.c}}`
- 원본 파일 압축 및 개체 파일 생성:
`c99 -c {{파일명.c}}`
- 원본 파일 압축, 개체 파일 연결 및 실행 파일 생성:
`c99 {{파일명.c}} {{파일명.o}}`