summaryrefslogtreecommitdiff
path: root/9p24.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-10-15 17:05:33 +0200
committerOskar <[email protected]>2024-10-15 17:05:33 +0200
commit7db4642f463244fdbacd2b20f261398c9de38fd9 (patch)
treea6f79131c824e489518749b17b7f4e452046e36b /9p24.cpp
parent428d857359b5d8b639ca41b03ca8fc8b3d143a50 (diff)
more
Diffstat (limited to '9p24.cpp')
-rw-r--r--9p24.cpp18
1 files changed, 18 insertions, 0 deletions
diff --git a/9p24.cpp b/9p24.cpp
new file mode 100644
index 0000000..23b0e0e
--- /dev/null
+++ b/9p24.cpp
@@ -0,0 +1,18 @@
+#include <iostream>
+#include <vector>
+
+/*
+ *
+ * 9.24
+ *
+ *
+ */
+
+int main () {
+
+ std::vector<int> a;
+ std::cout << a.at(0) << std::endl; //Exception
+ std::cout << a.front() << std::endl; // Segfault
+ std::cout << a.back() << std::endl; // Segfault
+ return 0;
+}