Ubuntu - 컴파일
컴파일 과정 hello.c -> hello.i(헤더 파일 삽입, 매크로 치환 및 적용) -> hello.s(어휘 분석, 구문 분석, 의미 분석, 중간언어 생성, 최적화, 목적코드) -> hello.o(기계어로 어셈블) -> collect2 링커 -> hello(실행 파일 표준 C라이브러리와 링크) gedit example.c //------------------------ /* 두 값의 곱셈을 계산하는 프로그램 */ #include int a,b; double product(int, int); main() { double c; printf("Input 1 ~ 100 : "); scanf("%d", &a); printf("Input 1 ~ 100 : "); scanf("%d", &b); c = produc..