This commit is contained in:
Bora Zuenbuelkoek 2025-05-23 07:32:31 +02:00
parent 445e541ddc
commit 9242c7e4a0
4 changed files with 4 additions and 4 deletions

View File

@ -53,4 +53,4 @@ int main() {
summe.tag, summe.std, summe.min, summe.sek, sgesamt); summe.tag, summe.std, summe.min, summe.sek, sgesamt);
return 0; return 0;
} }

View File

@ -52,4 +52,4 @@ int main() {
} }
// Kompilieren mit: // Kompilieren mit:
// gcc TestComplex.c -L. -lcomplex -o TestComplex // gcc TestComplex.c -L. -lcomplex -o TestComplex

View File

@ -50,4 +50,4 @@ void printComplex(const Complex* z) {
printf("(%.3f + %.3fi)\n", z->real, z->imag); printf("(%.3f + %.3fi)\n", z->real, z->imag);
else else
printf("NULL -> Division durch 0 nicht möglich\n"); printf("NULL -> Division durch 0 nicht möglich\n");
} }

View File

@ -16,4 +16,4 @@ Complex* multiplyComplex(const Complex* a, const Complex* b); // Multiplikati
Complex* divideComplex(const Complex* a, const Complex* b); // Division Complex* divideComplex(const Complex* a, const Complex* b); // Division
void printComplex(const Complex* z); // Ausgabe void printComplex(const Complex* z); // Ausgabe
#endif #endif