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

14
kapitel19/leak1.c Normal file
View File

@@ -0,0 +1,14 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(void)
{
char* buffer;
buffer = malloc(sizeof(char)*15);
*buffer = '\0';
strcpy(buffer, "Hejsan svejsan");
printf("%s\n", buffer);
free(buffer);
return 0;
}