get nullptr'd lol

This commit is contained in:
2024-03-09 23:17:44 -06:00
parent 5088bded35
commit 756d08231a
107 changed files with 9646 additions and 1888 deletions

View File

@@ -0,0 +1,9 @@
#include <stdio.h>
#include <stdlib.h>
int * dupParameter(int x) {
int * p = malloc(1 * sizeof(int));
if (p == NULL) {
return NULL;
}
}