【C++系列】运行第一个C++程序 2021.06.19 周六
作者:互联网
1.第一个C++程序
1)环境检查:如果您使用的是 Linux 或 UNIX,请在命令行使用下面的命令来检查您的系统上是否安装了 GCC
g++ -v
2)第一个C++程序 hello.cpp
#include <iostream>
using namespace std;
int main()
{
cout << "Hello, world!" << endl;
return 0;
}
3) 运行
g++ helloworld.cpp -o helloworld
执行 helloworld:
$ ./helloworld
Hello, world!
标签:2021.06,第一个,19,程序,helloworld,++,C++,cpp 来源: https://blog.csdn.net/xinkuaile/article/details/118051671