allg/halloalt.cpp

Das folgende Code-Beispiel stammt aus dem Buch
Objektorientiertes Programmieren in C++ - Ein Tutorial für Ein- und Umsteiger
von Nicolai Josuttis, Addison-Wesley München, 2001
© Copyright Nicolai Josuttis 2001


/* Das erste C++-Programm
 * - Version für noch nicht standardkonforme Umgebungen
 */

#include <iostream.h>  // Deklarationen für Ein-/Ausgaben

int main ()            // Hauptfunktion main()
{
    /* "Hallo, Welt!" auf Standard-Ausgabekanal cout
     * gefolgt von einem Zeilenende (endl) ausgeben
     */
    cout << "Hallo, Welt!" << endl;
}