Initial commit

This commit is contained in:
2021-10-01 20:24:05 +02:00
commit 860c025165
194 changed files with 4846 additions and 0 deletions

10
kapitel15/jbmath/jbmath.c Normal file
View File

@@ -0,0 +1,10 @@
float circumf(float diameter)
{
const float pi = 3.14159265;
return (pi * diameter);
}
float area(float length, float height)
{
return (length * height);
}