summaryrefslogtreecommitdiff
path: root/multi-arr-test.cpp
diff options
context:
space:
mode:
authorOskar <[email protected]>2024-08-15 18:16:33 +0200
committerOskar <[email protected]>2024-08-15 18:16:33 +0200
commit38e3c732d86165a84cd872e96e10ca1e811f2bb1 (patch)
tree5afc858281bd4d1cf9da8eb1b9034fe73d48435c /multi-arr-test.cpp
parentbec90eeec483f4fd685bb28758cdf55897bc0b3e (diff)
more exercises
Diffstat (limited to 'multi-arr-test.cpp')
-rw-r--r--multi-arr-test.cpp3
1 files changed, 3 insertions, 0 deletions
diff --git a/multi-arr-test.cpp b/multi-arr-test.cpp
index bdd5306..9abf500 100644
--- a/multi-arr-test.cpp
+++ b/multi-arr-test.cpp
@@ -25,6 +25,7 @@ int main () {
for(auto b : a) {
std::cout << b << " ";
}
+
std::cout << std::endl;
}
@@ -42,6 +43,7 @@ int main () {
for(auto b : a) {
std::cout << b << " ";
}
+
std::cout << std::endl;
}
@@ -50,6 +52,7 @@ int main () {
for(auto aa = std::begin(*a) ; aa != std::end(*a) ; ++aa) {
std::cout << *aa << " ";
}
+
std::cout << std::endl;
}