diff options
| author | Connor McDowell <[email protected]> | 2024-02-08 14:12:28 -0800 |
|---|---|---|
| committer | Connor McDowell <[email protected]> | 2024-02-08 14:12:28 -0800 |
| commit | 5dc32bd7bf9204c4113765f53d84a72ed415b71d (patch) | |
| tree | 4c7424cf2d8d5f58fac8ce025079c451901ea1fc /Inclass 10/PointerExamples.cpp | |
| parent | program.cpp and header.h set up (diff) | |
| download | in-class-exercise-10-connormcdowell275-5dc32bd7bf9204c4113765f53d84a72ed415b71d.tar.xz in-class-exercise-10-connormcdowell275-5dc32bd7bf9204c4113765f53d84a72ed415b71d.zip | |
files and functions set up
Diffstat (limited to 'Inclass 10/PointerExamples.cpp')
| -rw-r--r-- | Inclass 10/PointerExamples.cpp | 28 |
1 files changed, 28 insertions, 0 deletions
diff --git a/Inclass 10/PointerExamples.cpp b/Inclass 10/PointerExamples.cpp index e69de29..4889659 100644 --- a/Inclass 10/PointerExamples.cpp +++ b/Inclass 10/PointerExamples.cpp @@ -0,0 +1,28 @@ +#include <iostream> +#include "Header.h" +#include "Node.h" + +using std::cin; +using std::cout; +using std::endl; + +void Swap(Node* first, Node* second) +{ + + + +} + +void Standardize_101(Node* node) +{ + + + +} + +void Square(Node* node) +{ + + + +}
\ No newline at end of file |