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
kapitel8/digit-test.c Normal file
View File

@@ -0,0 +1,11 @@
#include <stdio.h>
#include <ctype.h>
int main(void)
{
char chr1 = '9';
char chr2 = 'a';
printf("chr1: %d\n", isdigit(chr1));
printf("chr2: %d\n", isdigit(chr2));
return 0;
}