2
如何编译C ++源代码(“找不到iostream.h”错误)?
我不想讨论C ++或任何编程语言!我只想知道linux ubuntu在编译helloworld.cpp方面做错了什么! 我正在学习C ++,所以我的步骤是: 在vim中打开hello.cpp并将其写入 #include <iostream.h> int main() { cout << "Hello World!\n";` return 0; } 所以,在那之后我在终端中尝试了 g++ hello.cpp 与的输出是 hello.cpp:1:22: fatal error: iostream.h: No such file or directory compilation terminated. 你有什么建议?任何对我有用的逐步指南?谢谢!