主文件
#include <iostream>
#include <string>
using namespace std;
void echo(string);
int main()
{
echo("hello");
cout << "Hello world!" << endl;
return 0;
}
打印.cpp
#include <iostream>
#include <string>
void echo(string code){
cout << code;
}
在代码块 12.11 中编译代码后,它给了我这个错误:
undefined reference to `echo(std::string)
我使用 Windows 7 x64。我已经添加了目录;项目>构建选项>搜索目录并添加当前工作目录。所有文件都在代码块中的一个控制台项目中