Initial commit

This commit is contained in:
2021-10-01 20:24:05 +02:00
commit 860c025165
194 changed files with 4846 additions and 0 deletions

View File

@@ -0,0 +1,18 @@
#include <stdio.h>
#define LANGD 5
int main(void)
{
int i;
int x[LANGD] = {0, 1, 2, 3, 4};
int *px;
px = x;
for (i = 0; i<LANGD; i++)
{
printf("%d: %p\n", *px, (void*)px);
px = px + 1;
}
return 0;
}