1
0

thesis: Almost complete first section

This commit is contained in:
2025-07-08 20:12:43 +02:00
parent d1d9f601c9
commit ac96d571cd
6 changed files with 152 additions and 15 deletions

10
thesis/listings/main.c Normal file
View File

@@ -0,0 +1,10 @@
#include <stdlib.h>
#include <stdio.h>
#include <string.h>
int main(const int argc, char *const argv[]) {
char *str = malloc(10);
strcpy(str, "Abc123");
printf("Hello World!\nString: %s\n", str);
free(str);
}