summaryrefslogtreecommitdiff
path: root/6p11.cpp
diff options
context:
space:
mode:
Diffstat (limited to '6p11.cpp')
-rw-r--r--6p11.cpp22
1 files changed, 22 insertions, 0 deletions
diff --git a/6p11.cpp b/6p11.cpp
new file mode 100644
index 0000000..6e37076
--- /dev/null
+++ b/6p11.cpp
@@ -0,0 +1,22 @@
+#include <iostream>
+
+/*
+ *
+ * 6.11
+ *
+ *
+ */
+
+void resettozero(int &i) {
+
+ i = 0;
+}
+
+int main () {
+
+ int i = 2132;
+ std::cout << i << std::endl;
+ resettozero(i);
+ std::cout << i << std::endl;
+ return 0;
+}