Dieses Schlüsselwort dient dazu, einen Wert aus einer Funktion zurückzugeben.
int add( int a, int b )
{
int resultat = a + b;
return resultat;
}
Am Ende der Funktion main() wird
ebenfalls ein Wert an das Betriebssystem zurück gegeben. Hier findet
man in Konsolenanwendungen z.B. return
0;.
Das ist nach dem aktuellen C++-Standard von
1998 allerdings nicht mehr notwendig. Der Compiler erledigt dies
automatisch. Es gilt jedoch als guter Stil.