Browse Source

remainderValue Funktion

remotes/origin/Abdelrahman
Abdelrahman 11 months ago
parent
commit
02ad6ca4dc
  1. 4
      src/c/funktionen.c

4
src/c/funktionen.c

@ -102,3 +102,7 @@ float average(float x, float y) {
return (x + y) / 2; return (x + y) / 2;
} }
// Function to calculate the remainder of division between two numbers
float remainderValue(float x, float y) {
return fmod(x, y);
}
Loading…
Cancel
Save