0%

如何在Linux系统下编译C++

如何在Linux系统下编译C++

方法一:

1
2
3
4
5
6
7
8
#include<iostream>
#include<cstdio>
using namespace std;
int main(){

cout<<"hello_word";
return 0;
}

1679061064013

编译

1
gcc 1.cpp -lstdc++ 

生a.out文件

1679061165889

运行a.out

1
./a.out

1679061280444

方法二:

1
2
3
4
5
6
7
8
#include<iostream>
#include<cstdio>
using namespace std;
int main(){

cout<<"hello_word222";
return 0;
}

1679061782953

编译

1
g++ 2.cpp -o 2output

运行2output

1
./2output
-------------本文结束感谢您的阅读-------------
老板你好,讨口饭吃