使用G ++编译C ++程序时出错

时间:2016-02-19 15:23:06

标签: c++ gcc compiler-errors g++

v这是main.cpp

#include <stdio.h>

using namespace std;

int main() {
    cout << "Hello, World!" << endl;
    return 0;
}

为了编译它,我进入cmd并输入g++ main.cpp但是它给了我2个错误,表示未声明coutendl。我只能想象它是因为找不到命名空间std或者不能包含<stdio.h>。我该怎么做才能做到这一点?

1 个答案:

答案 0 :(得分:3)

您必须包含iostream,而不是stdio.h才能使用std::coutstd::endl