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

13
incdec.c Normal file
View File

@@ -0,0 +1,13 @@
/* Inkrementieren und Dekrementieren */
/* incdec.c */
#include <stdio.h>
int main (void)
{
int i,x;
i = 6;
x = i++;
printf("\n1. x = %d", x);
x = ++i;
printf("\n2. x = %d", x);
return 0;
}