Hallo,
Ich beginne grade damit c++ zu erlernen. Dafür habe ich mir den Borland Compiler heruntergeladen (v. 4.9.9.0).
Jetzt hab ich aus einem Tutorial folgendes "kleines Programm":
#include <iostream.h>
void main()
{
float radius;
cout<<"Bitte geben Sie den Radius ein: ";
cin>>radius;
cout<<"Der Umfang betraegt: "<<2*3.14*radius<<endl;
};
Doch wenn ich dieses Compilire zeigt er eine Fehlermeldung an. Sie lautet:
" D:\Dev-Cpp\include\c++\3.3.1\backward\backward_warning.h:32 #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 <sstream> instead of the deprecated header <strstream.h>. To disable this warning use -Wno-deprecated. "
Was habe ich zu tun damit der Fehler verschwindet?
DANKE SCHONMAL
Eierbaer
eierbaer Gast |