我正在编写我的第一个 C++ 应用程序。但我得到语法错误。
#include <iostream>
using namespace std;
int main() {
int result = get_num();
cout << "Result is " << result << endl;
system("pause");
return 0;
}
int get_num(void) {
return 1;
}
编译器告诉我:
main.cpp(10):错误 C3861:'get_num':找不到标识符