Browse Source

Flächenberechnungsfunktion erstellt

remotes/origin/siamak
Siamak 12 months ago
parent
commit
f1de0f7667
  1. 4
      src/c/funktionen.c

4
src/c/funktionen.c

@ -121,6 +121,10 @@ float volume(float a, float b, float c) {
return a * b * c;
}
float area(float a, float b) {
return a * b;
}
int stringCharacterCounter(char string[]) {
int stringLength = 0;

Loading…
Cancel
Save