概述
我想在Linux(Linux MINT 8)中运行我的第一个C++程序。我使用gcc或g++,两者都有相同的问题:编译器找不到我要导入的库。
我怀疑我应该复制工作文件夹中的iostream.h文件(我不知道该在哪里查找),移动我的文件到其他地方编译,或者使用某种选项。
谢谢你的建议。
下面是GCC命令、C++代码和错误消息:
gcc -o addition listing2.5.c
.
#include
int Addition(int a, int b)
{
return (a + b);
}
int main()
{
cout << "Resultat : " << Addition(2, 4) << "n";
return 0;
}
.
listing2.5.c:1:22: error: iostream.h: No such file or directory
listing2.5.c: In function âmainâ:
listing2.5.c:10: error: âcoutâ undeclared (first use in this function)
listing2.5.c:10: error: (Each undeclared identifier is reported only once
listing2.5.c:10: error: for each function it appears in.)
现在代码会编译,但我不能使用文件名从命令行运行它。
addition: command not found
有什么建议吗?
最后
以上就是单纯火为你收集整理的Linux中使用iOStream头文件,在Linux中使用gcc链接
如果觉得靠谱客网站的内容还不错,欢迎将靠谱客网站推荐给程序员好友。
发表评论 取消回复