Browse Source

Ändere Funktionsname von sub zu subdouble

master
INNA 11 months ago
parent
commit
fc67e3c87c
  1. 8
      src/subtraktion.c

8
src/subtraktion.c

@ -1,13 +1,9 @@
#include "subtraktion.h"
#include <stdio.h> #include <stdio.h>
#include <stdlib.h> #include <stdlib.h>
//nimmt zwei Gleitkommazahlen entgegen und gibt Ergebnis der Subtraktion zurück //nimmt zwei Gleitkommazahlen entgegen und gibt Ergebnis der Subtraktion zurück
double sub(double zahl1, double zahl2) {
double subdouble(double zahl1, double zahl2) {
return zahl1 - zahl2; return zahl1 - zahl2;
} }
int main() {
return 0;
}
Loading…
Cancel
Save