/* Übersetzungseinheiten */ /* Datei: einhei5.c */ /* Vorwärts-Deklaration */ float funktion (int); int main() { printf ("\nDer Rückgabewert ist: %f",funktion (10)); return 0; } float funktion (int x) { return (float) x; }