Browse Source

Erste Implementierung der Subtraktionsfunktion

master
INNA 11 months ago
parent
commit
16299ad3bd
  1. 6
      src/subtraktion.c

6
src/subtraktion.c

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