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

15
pointer_int.c Normal file
View File

@@ -0,0 +1,15 @@
#include <stdio.h>
int main()
{
int a[10], *Pa;
int i;
for (Pa=a, i=0;i < 10; *Pa++=i++)
;
for (Pa=a, i=0;i < 10; i++)
printf("Wert an der Stelle (%d): %d\n",i,*Pa++);
}