aboutsummaryrefslogtreecommitdiff
path: root/Inclass 10/program.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'Inclass 10/program.cpp')
-rw-r--r--Inclass 10/program.cpp4
1 files changed, 4 insertions, 0 deletions
diff --git a/Inclass 10/program.cpp b/Inclass 10/program.cpp
index 59231d5..ce6fc87 100644
--- a/Inclass 10/program.cpp
+++ b/Inclass 10/program.cpp
@@ -27,8 +27,12 @@ int main()
Swap(&newNode, &nextNode);
+ cout << "first node swapped is: " << newNode.data << " the second node swapped is : " << nextNode.data << endl;
+
Standardize_101(&newNode);
+ cout << newNode.data << endl;
+
Square(&nextNode);
return 0;