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,10 @@
#include <stdio.h>
#define SIZE 11
int main(void)
{
char namn[SIZE] = "Jack-Benny";
printf("Adressen till 'namn': %p\n", (void*)&namn);
return 0;
}