01 // Fehlerbehandlung - Ignorieren
02 // Datei: ignor1.cpp
03
04 #include <stdio.h>
05
06 int main ()
07 {
08 int x = printf ("Hello World\n");
09 printf ("Ergebnis der Ersten Ausgabe: %d\n",x);
10 return 0;
11 }
12

Bild 18-1  Ignorieren eines möglichen Fehlers