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

12
asciitab.c Normal file
View File

@@ -0,0 +1,12 @@
#include <stdio.h>
int i;
int main()
{
for (i=32;i<250;i++)
{
printf("%d - %c ",i,i);
if((i%10)==0) printf("\n");
}
}