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

13
kapitel5/unsignedtest.c Normal file
View File

@@ -0,0 +1,13 @@
#include <stdio.h>
#include <unistd.h>
int main(void)
{
unsigned int i;
for (i = 10; i >= 0; i--)
{
printf("%u\n", i);
sleep(1);
}
return 0;
}