next up previous contents index
Next: Geschichte Up: C++ ist nicht C: Previous: C++ ist nicht C:

Das erste (und wichtigste) C++-Beispiel

    // hello.cc
    #include <iostream.h>

    void main(void)
    { cout << "Hello World!\n";
    }

Übersetzung mit SUN oder GNU Compiler:    

     CC -o hello hello.cc

oder

     g++ -o hello hello.cc


next up previous contents index
Next: Geschichte Up: C++ ist nicht C: Previous: C++ ist nicht C:

Peter Pfahler, 1997