summaryrefslogtreecommitdiff
path: root/pointertest.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-07-30 17:01:04 +0200
committerOskar <[email protected]>2024-07-30 17:01:04 +0200
commit642720852ec17b68d8d2bbad300202604c0bb63d (patch)
tree5cdb770d6a871f90a3511bd4b885b6499cffd534 /pointertest.cpp
parent7aac5c6dc29079971a5c964762cdb294782b14d5 (diff)
more exercises
Diffstat (limited to 'pointertest.cpp')
-rw-r--r--pointertest.cpp21
1 files changed, 21 insertions, 0 deletions
diff --git a/pointertest.cpp b/pointertest.cpp
new file mode 100644
index 0000000..2a2210d
--- /dev/null
+++ b/pointertest.cpp
@@ -0,0 +1,21 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * Description
+ *
+ *
+ */
+
+int main () {
+
+ int val = 929992;
+ int *pi = nullptr;
+ int **pi2 = nullptr;
+ pi = &val;
+ pi2 = &pi;
+ std::cout << &pi << " " << pi2 << std::endl;
+ std::cout << val << " " << *pi << " " << **pi2 << std::endl;
+ return 0;
+}