Ich möchte nicht über C ++ oder irgendeine Programmiersprache diskutieren, sondern nur wissen, was ich mit Linux Ubuntu beim Kompilieren von helloworld.cpp falsch mache!
Ich lerne C ++ und meine Schritte sind:
Öffne hello.cpp in vim und schreibe dies
#include <iostream.h>
int main()
{
cout << "Hello World!\n";`
return 0;
}
Also, danach habe ich es im Terminal versucht
g++ hello.cpp
UND die Ausgabe ist
hello.cpp:1:22: fatal error: iostream.h: No such file or directory
compilation terminated.
Was schlagen Sie vor? Eine nützliche Schritt-für-Schritt-Anleitung für mich? Danke!
g++
Ubuntu). akzeptiere es nicht.