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

18
kapitel9/static-ex2.c Normal file
View File

@@ -0,0 +1,18 @@
#include <stdio.h>
void funk(void);
int main(void)
{
funk();
funk();
funk();
return 0;
}
void funk(void)
{
static int j = 0;
j++;
printf("%d\n", j);
}