C++初心者です。
C++でコンパイルすると以下のようなwarningメッセージが出るのですが、どういう意味なんでしょうか?解決策があれば教えてください。
プログラム(sample.cpp)
#include <iostream.h>
main(){
cout << " sample \n";
}
warningメッセージ
In file included from /usr/include/c++/3.3.1/backward/iostream.h:31,
from sample.cpp:1:
/usr/include/c++/3.3.1/backward/backward_warning.h:32:2: warning: #warning This
file includes at least one deprecated or antiquated header. Please consider usin
g 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 <s
stream> instead of the deprecated header <strstream.h>. To disable this warning
use -Wno-deprecated
お礼
とてもわかりやすい説明ありがとうございました。 解決しました。