9 lines
171 B
C
9 lines
171 B
C
#include <stdio.h>
|
|
#include <stdlib.h>
|
|
|
|
// Gibt eine Fehlermeldung aus und beendet das Programm
|
|
void fehler(char *text) {
|
|
printf("FEHLER: %s\n", text);
|
|
exit(1);
|
|
}
|