summaryrefslogtreecommitdiff
path: root/4p19.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p19.cpp')
-rw-r--r--4p19.cpp19
1 files changed, 19 insertions, 0 deletions
diff --git a/4p19.cpp b/4p19.cpp
new file mode 100644
index 0000000..ab94f28
--- /dev/null
+++ b/4p19.cpp
@@ -0,0 +1,19 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 4.19
+ *
+ *
+ */
+
+int main () {
+
+ int *ptr = nullptr;
+ int aa = 12374;
+ int ival = 0;
+ ptr = &aa;
+ vector<int> vec;
+ return 0;
+}