c++ helloworld
时间: 2023-10-23 22:11:43 浏览: 181
C++的hello-world
C++的Hello World程序可以使用两种方式实现,一种是使用C语言的printf函数,另一种是使用C++的cout函数。下面分别介绍这两种方式的实现方法。
1.使用printf函数的实现方法:
#include <stdio.h>
int main() {
printf("Hello World!");
return 0;
}
2.使用cout函数的实现方法:
#include <iostream>
using namespace std;
int main() {
cout << "Hello World!";
return 0;
}
在编译时,需要将iostream库链接到程序中,否则会出现类似于“undefined reference to ‘std::cout’”的错误。可以使用以下命令进行编译:
g++ -o HelloWorld HelloWorld.cpp
其中,-o参数指定输出文件名,HelloWorld.cpp是源文件名。
阅读全文