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

12
kapitel5/modulo-ex1.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int main(void)
{
printf("%d / %d = %d\n", 3, 2, 3/2);
printf("%d %% %d = %d\n\n", 3, 2, 3%2);
printf("%d / %d = %d\n", 13, 4, 13/4);
printf("%d %% %d = %d\n", 13, 4, 13%4);
return 0;
}