Kompilieren mit SUSE über Konsole
lima-city → Forum → Heim-PC → Hardware
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage
-
habe es gemacht bekomme das wieder:
In file included from /usr/include/g++/backward/iostream.h:31,
from hallo.cpp:1:
/usr/include/g++/backward/backward_warning.h:32:2: warning: #warning This file includes at least one deprecated or antiquated header. Please consider using oneof the 32 headers found in section 17.4.1.2 of the C++ standard. Examples include substituting the <X> header for the <X.h> header for C++ includes, or <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated.
hallo.cpp:2:19: conio.h: Datei oder Verzeichnis nicht gefunden
hallo.cpp:5: error: `main' must return `int'
hallo.cpp: In function `int main(...)':
hallo.cpp:8: error: `getch' undeclared (first use this function)
hallo.cpp:8: error: (Each undeclared identifier is reported only once for each
function it appears in.)
hallo.cpp:9:2: warning: no newline at end of file
und so sieht mein Quelltext aus:
#include <iostream.h>
#include <conio.h>
void main()
{
cout <<"Hallo World";
getch();
}
Was ist den jetzt daran falsch? -
Der Code muss so lauten (unter Linux):
#include <iostream>
using namespace std;
int main()
{
cout << "Hallo Welt!";
getchar();
}
Kompilieren kannst Du die Datei mit "g++ namederdatei.c"
Die Ausgabedatei lautet "a.out".
-
Diskutiere mit und stelle Fragen: Jetzt kostenlos anmelden!
lima-city: Gratis werbefreier Webspace für deine eigene Homepage