aboutsummaryrefslogtreecommitdiff
path: root/Inclass-9/ReferenceExamples.cpp
diff options
context:
space:
mode:
authorConnor McDowell <[email protected]>2024-02-08 12:15:38 -0800
committerConnor McDowell <[email protected]>2024-02-08 12:15:38 -0800
commit672a0bc2400b51e57e6d73142cfa76010255a72c (patch)
tree283d6be9755949e81c7436859c5acf51ab5dea94 /Inclass-9/ReferenceExamples.cpp
parent.cpp and .h files set up, labled, and included. (diff)
downloadin-class-exercise-9-connormcdowell275-672a0bc2400b51e57e6d73142cfa76010255a72c.tar.xz
in-class-exercise-9-connormcdowell275-672a0bc2400b51e57e6d73142cfa76010255a72c.zip
gone through some of the lecture, includes node and basic ref
Diffstat (limited to 'Inclass-9/ReferenceExamples.cpp')
-rw-r--r--Inclass-9/ReferenceExamples.cpp23
1 files changed, 22 insertions, 1 deletions
diff --git a/Inclass-9/ReferenceExamples.cpp b/Inclass-9/ReferenceExamples.cpp
index aaef1d6..bd90626 100644
--- a/Inclass-9/ReferenceExamples.cpp
+++ b/Inclass-9/ReferenceExamples.cpp
@@ -5,4 +5,25 @@
using std::cin;
using std::cout;
-using std::endl; \ No newline at end of file
+using std::endl;
+
+void Swap(int& x, int& y)
+{
+
+
+
+}
+
+void Standardize_101(int& n)
+{
+
+
+ // return n %= 101;
+}
+
+void Square(int& x)
+{
+
+
+
+} \ No newline at end of file