summaryrefslogtreecommitdiff
path: root/6p24.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-09-06 17:10:32 +0200
committerOskar <[email protected]>2024-09-06 17:10:32 +0200
commitcc01160a3f0fdcb27eb931f67e85d783d0f5626d (patch)
tree3574e221430241d8b9e11c73ae27cc1301b015f9 /6p24.cpp
parent9b73f5889937d88796b45126f6165027fecd3436 (diff)
more
Diffstat (limited to '6p24.cpp')
-rw-r--r--6p24.cpp20
1 files changed, 20 insertions, 0 deletions
diff --git a/6p24.cpp b/6p24.cpp
new file mode 100644
index 0000000..23e5417
--- /dev/null
+++ b/6p24.cpp
@@ -0,0 +1,20 @@
+#include <iostream>
+
+/*
+ *
+ * 6.24
+ *
+ *
+ */
+
+int main () {
+
+ /*
+ void print(const int (&ia)[10])
+ {
+ for (size_t i = 0; i != 10; ++i)
+ cout << ia[i] << endl;
+ }
+ */
+ return 0;
+}