Computer >> คอมพิวเตอร์ >  >> การเขียนโปรแกรม >> C++

MakeFile ใน C ++ และแอปพลิเคชัน


ในบทช่วยสอนนี้ เราจะพูดถึงโปรแกรมเพื่อทำความเข้าใจ MakeFile ใน C++ และแอปพลิเคชัน

ภารกิจคือการทำลายโปรแกรมทั้งหมดด้วย MakeFile โดยปกติจะทำโดยการสร้างไฟล์ .cpp และ .h ที่มีคลาส/ฟังก์ชันทั้งหมด แล้วเชื่อมโยงเข้าด้วยกัน

ตัวอย่าง

main.cpp

#include <bits/stdc++.h>
#include "function.h"
using namespace std;
//main execution program
int main(){
   int num1 = 1;
   int num2 = 2;
   cout << multiply(num1, num2) << endl;
   int num3 = 5;
   cout << factorial(num3) << endl;
   print();
}

print.cpp

#include <bits/stdc++.h>
#include "function.h"
using namespace std;
void print()
{
   cout < "makefile" << endl;
}

factorial.cpp

#include <bits/stdc++.h>
#include "function.h"
using namespace std;
//factorial program
int factorial(int n){
   if (n == 1)
      return 1;
   return n * factorial(n - 1);
}

multiply.cpp

#include <bits/stdc++.h>
#include "function.h"
using namespace std;
int multiply(int a, int b){
   return a * b;
}

functions.h

#ifndef FUNCTIONS_H
#define FUNCTIONS_H
void print();
int factorial(int);
int multiply(int, int);
#endif

ผลลัพธ์

2
120
makefile