diff options
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 |