aboutsummaryrefslogtreecommitdiff
path: root/challenge-108/laurent-rosenfeld/cpp/ch-1.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'challenge-108/laurent-rosenfeld/cpp/ch-1.cpp')
-rw-r--r--challenge-108/laurent-rosenfeld/cpp/ch-1.cpp8
1 files changed, 8 insertions, 0 deletions
diff --git a/challenge-108/laurent-rosenfeld/cpp/ch-1.cpp b/challenge-108/laurent-rosenfeld/cpp/ch-1.cpp
new file mode 100644
index 0000000000..ec2ed9970a
--- /dev/null
+++ b/challenge-108/laurent-rosenfeld/cpp/ch-1.cpp
@@ -0,0 +1,8 @@
+#include <iostream>
+using namespace std;
+
+int main() {
+ int array[4] = {42, 43, 44, 45};
+ cout << "Memory address of the array is: " << array;
+ return 0;
+}