cpp osx 4 vscode çoklu dosya derleme
Son adım olarak, c projesinde olduğu gibi birden fazla dosya derleme ve farklı dizinlerdeki dosyaları derleme işine bakacağız. dosyaları şuradakilerden alıyorum. https://www.go4expert.com/articles/write-multi-files-program-cpp-t29978/ main.cpp #include <iostream> #include <string> using namespace std; #include "Mathematics.h" int main() { int num1, num2, result; Mathematics maths; cout <<"Enter the first number:"; cin>>num1; cout<<"Enter the 2nd number:"; cin>>num2; result = maths.add(num1, num2); cout <<"\nThe result of adding two numbers is: "<<result<<endl; result = maths.subtract(num1, num2); cout <<"The result of subtracting two numbers is: "<<result<<endl; result = maths.multiply(num1, num2); cout <<"The result of multipltying two numbers is: "<<result<<endl; result = maths.divide(num1, num2); cout <<"T...