// Ex731.cc // Sec. 7.3 of lecture // Function without return value #include void spass(const int); // Deklaration of spass() main() { int n; cout << endl << " Eingabe n : "; cin >> n; cout << endl; spass(n); // Call spass() cout << endl; } void spass(const int n) { cout << "Jetzt schlägt's aber " << n << endl; return; }