summaryrefslogtreecommitdiff
path: root/2p25.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 /2p25.cpp
parent7aac5c6dc29079971a5c964762cdb294782b14d5 (diff)
more exercises
Diffstat (limited to '2p25.cpp')
-rw-r--r--2p25.cpp27
1 files changed, 27 insertions, 0 deletions
diff --git a/2p25.cpp b/2p25.cpp
new file mode 100644
index 0000000..e97dec3
--- /dev/null
+++ b/2p25.cpp
@@ -0,0 +1,27 @@
+#include <iostream>
+#include "sales_item.hpp"
+
+/*
+ *
+ * 2.25
+ *
+ *
+ */
+
+int main () {
+
+ int *p = nullptr;
+ int i = 10;
+ int &r = i;
+ // addr 10 10
+ std::cout << &p << " " << i << " " << r << std::endl;
+
+ int i2 = 11;
+ int *ip = 0; // AKA nullptr AKA NULL
+ std::cout << i2 << " " << &ip << std::endl;
+
+ int *ip2 = nullptr;
+ int ip3 = 99;
+ std::cout << ip3 << " " << &ip2 << std::endl;
+ return 0;
+}