Home [C언어] gcc 컴파일 명령어
Post
Cancel

[C언어] gcc 컴파일 명령어

1
2
3
4
5
6
7
8
9
10
gcc [filename]
#기본 컴파일 명령어. 실행파일 이름은 a.out으로 생성

gcc -o [output name] [filename]
#실행파일 이름을 지정
gcc -o [output name] [f1] [f2] [f3]
#파일 여러개 하나로 컴파일

gcc -Wall
#모든 모호한 코드에 대해 경고
This post is licensed under CC BY 4.0 by the author.

Shell 명령어 정리

[C언어] 배열