initial checkin from subversion

This commit is contained in:
Tretter
2017-02-07 20:03:49 +00:00
commit ed54469421
108 changed files with 1999 additions and 0 deletions

20
swiblok.c Normal file
View File

@@ -0,0 +1,20 @@
/* Falluntersuchung und Konstante */
/* swiblok.c */
#include <stdio.h>
int main ()
{
char c;
puts("\x1b[2J");
printf ("Tippen Sie Buchstaben oder Tab\n");
switch (c = getchar())
{
int hilfe;
case '\t' : printf("\nTabulator.\n"); break;
case 'A' : printf("\nGroßes A\n"); hilfe = 1; break;
case '\x81':printf("\nUmlaut\n"); break;
default : hilfe = c;
printf("\n Wert %04x\n",hilfe); break;
}
return 0;
}