Computer >> 컴퓨터 >  >> 프로그램 작성 >> C++

G++를 사용하여 여러 .cpp 및 .h 파일 컴파일

<시간/>

file_name.h 또는 file_name.cpp와 같은 여러 파일을 한 번에 컴파일하려면 목록처럼 파일을 차례로 사용할 수 있습니다. 구문은 다음과 같습니다 -

g++ abc.h xyz.cpp

프로그램을 실행하기 위해 다음을 사용할 수 있습니다 -

./a.out

예시

float area(float r){
   return (3.1415*r*r); //area of a circle
}
float area(float l, float w){
   return (l * w); //area of a rectangle
}

예시

#include <iostream>
#include "area.h"
using namespace std;
main(){
   cout << "Area of circle with radius 2.5 is: " << area(2.5) << endl;
   cout << "Area of rectangle with length and width are 5 and 7 is: " << area(5, 7) << endl;
}

출력

$ g++ area.h find_area.cpp
$ ./a.out
Area of circle with radius 2.5 is: 19.6344
Area of rectangle with length and width are 5 and 7 is: 35
$