On Tuesday 22 October 2002 02:22, Yura Gusev wrote:
> Matthew C. Tedder said:
> > Why does g++ tell me that the <iostream.h> header has been depricated?
>
> #include <iostream>
> int main()
> {
>    std::cout << "Hello world" << std::endl;
>    return 0;
> }
>
> or
>
> #include <iostream>
> using std;
> int main()
> {
>    cout << "Hello world" << endl;
>    return 0;
> }
>
>
> It is now in C99 standard.
That would really surprise me that C99 now includes C++ :-)
It's part of ISO/IEC 14882 though, the C++ Standard as of 1998.
-Malte

Reply via email to