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,8 @@
#include <iostream>
#include "pointers1.h"
int main() {
int * p = dupParameter(7);
std::cout << &p << std::endl;
return 0;
}