aboutsummaryrefslogtreecommitdiff
path: root/In Class Excercise 10
diff options
context:
space:
mode:
Diffstat (limited to 'In Class Excercise 10')
-rw-r--r--In Class Excercise 10/In Class Excercise 10/Node.h1
-rw-r--r--In Class Excercise 10/In Class Excercise 10/PointerExamples.cpp2
-rw-r--r--In Class Excercise 10/In Class Excercise 10/program.cpp4
3 files changed, 6 insertions, 1 deletions
diff --git a/In Class Excercise 10/In Class Excercise 10/Node.h b/In Class Excercise 10/In Class Excercise 10/Node.h
index 0c5ad5f..1d168e9 100644
--- a/In Class Excercise 10/In Class Excercise 10/Node.h
+++ b/In Class Excercise 10/In Class Excercise 10/Node.h
@@ -8,3 +8,4 @@ struct Node;
#endif // !POINT_H
+
diff --git a/In Class Excercise 10/In Class Excercise 10/PointerExamples.cpp b/In Class Excercise 10/In Class Excercise 10/PointerExamples.cpp
index 50854bd..b64c430 100644
--- a/In Class Excercise 10/In Class Excercise 10/PointerExamples.cpp
+++ b/In Class Excercise 10/In Class Excercise 10/PointerExamples.cpp
@@ -25,3 +25,5 @@ void Square(Node* node)
{
node->_num *= node->_num;
}
+
+
diff --git a/In Class Excercise 10/In Class Excercise 10/program.cpp b/In Class Excercise 10/In Class Excercise 10/program.cpp
index 8cb09f3..94cc7e9 100644
--- a/In Class Excercise 10/In Class Excercise 10/program.cpp
+++ b/In Class Excercise 10/In Class Excercise 10/program.cpp
@@ -19,4 +19,6 @@ int main()
return 0;
}
-// insert int & variables as needed ~ Miles \ No newline at end of file
+
+
+// This one was confusing. Add variables as needed, I guess? Not my favorite, but I tried. \ No newline at end of file