Probleme beim Compilieren
-
HI,
beim compilieren folgendes Textes ....
#include <iostream.h> #include <stdio.h> void main(void) { cout << "Hello World" << endl; getchar(); }
kam folgende Fehlermeldungen :
1 C:\Dev-Cpp\include\c++\3.4.2\backward\iostream.h:31, from Unbenannt1.cpp In file included from C:/Dev-Cpp/include/c++/3.4.2/backward/iostream.h:31, from Unbenannt1.cpp
1 C:\Dev-Cpp\Save\Unbenannt1.cpp from Unbenannt1.cpp
32:2 C:\Dev-Cpp\include\c++\3.4.2\backward\backward_warning.h #warning This file includes at least one deprecated or antiquated header. Please consider using one of 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 <iostream> instead of the deprecated header <iostream.h>. To disable this warning use -Wno-deprecated.
3 C:\Dev-Cpp\Save\Unbenannt1.cpp `main' must return `int'
C:\Dev-Cpp\Save\Makefile.win [Build Error] [Unbenannt1.o] Error 1was hab ich falsch gemacht ???
MfG Mutabor
-
Hallo!
Lies nochmal genau diese Zeile:
3 C:\Dev-Cpp\Save\Unbenannt1.cpp `main' must return `int'
Und schau dir vor dem nächsten Post bitte mal sfds an.
-
#include <iostream> // ohne .h, die die mit .h ist veraltet (deprecated) using namespace std; int main() { cout << "Hello World!" << endl; return 0; }
-
Danke für die Infomation ! Diese alte Schreibweise / Den Quellcode hab ich von einem Turtorial aus dem Internet(anscheinend veraltet
)! Kennt einer ein aktuelles, möglichst deutsches Turtorial, dass ich mir downloaden kann ( bzw. eine Internetseite).
MfG Mutabor