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

11
kapitel5/fmodtest.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <math.h>
int main(void)
{
float taljare = 19.5;
float namnare = 4.3;
printf("fmod(%0.1f, %0.1f) = %0.1f\n", taljare, namnare,
fmod(taljare,namnare));
return 0;
}