summaryrefslogtreecommitdiff
path: root/4p17.cpp
diff options
context:
space:
mode:
Diffstat (limited to '4p17.cpp')
-rw-r--r--4p17.cpp14
1 files changed, 14 insertions, 0 deletions
diff --git a/4p17.cpp b/4p17.cpp
new file mode 100644
index 0000000..63459d8
--- /dev/null
+++ b/4p17.cpp
@@ -0,0 +1,14 @@
+
+/*
+ *
+ * 4.17
+ *
+ *
+ */
+
+int main () {
+
+ // Prefix increments will increment the object by 1 and return the incremented object as result.
+ // Postfix increment will increment the object by 1 but return a copy of the object before being incremented.
+ return 0;
+}