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

17
ifa.c Normal file
View File

@@ -0,0 +1,17 @@
/* Ja/Nein - Entscheidung */
/* ifa.c */
#include <stdio.h>
int main ()
{
puts ("\x1b[2J");
puts ("Drücke beliebige Taste\n");
if (getc(stdin) > 0x60 )
{
puts ("kleiner");
puts (" Buchstabe");
}
else
puts ("großer Buchstabe");
return 0;
}