当前位置: 技术问答>linux和unix
关于问题提示
来源: 互联网 发布时间:2016-11-22
本文导语: 我所刚学LINUX的,在VIM下进行编写一个简单的C++程序,有对文件进行操作的!不过提示在终端下提示 abigbadboy@abigbadboy-virtual-machine:~$ g++ -o hello hello.cpp -lm hello.cpp:5: error: expected initializer before numeric constant, 这个...
我所刚学LINUX的,在VIM下进行编写一个简单的C++程序,有对文件进行操作的!不过提示在终端下提示
abigbadboy@abigbadboy-virtual-machine:~$ g++ -o hello hello.cpp -lm
hello.cpp:5: error: expected initializer before numeric constant,
这个我不知道学要怎么办啦,程序我确定没有语法或逻辑上的错误
帮忙下小弟,谢谢啦!!
abigbadboy@abigbadboy-virtual-machine:~$ g++ -o hello hello.cpp -lm
hello.cpp:5: error: expected initializer before numeric constant,
这个我不知道学要怎么办啦,程序我确定没有语法或逻辑上的错误
帮忙下小弟,谢谢啦!!
#include
#include
#include
const int SIZE 100
int main()
{
using namespace std;
char filename[SIZE];
ifstream inFile;
cout