我刚开始阅读 Accelerated C++,当我遇到这个练习时,我正在尝试完成练习:
0-4. Write a program that, when run, writes the Hello, world! program as its output.
所以我想出了这个代码:
#include "stdafx.h"
#include <iostream>
using namespace std;
int main()
{
cout << helloWorld << endl;
cin.get();
return 0;
}
void helloWorld(void)
{
cout << "Hello, world!" << endl;
}
我不断收到错误'helloWorld' : undeclared identifier
。我认为我应该做的是为 helloWorld 创建一个函数,然后调用该函数作为输出,但显然这不是我需要的。我也尝试过helloWorld()
输入 main ,但这也没有帮助。任何帮助是极大的赞赏。