// name: Connor McDowell // date: 2/8/2024 // class: CIS116 // reason: Inclass exercise 10 #include #include "Header.h" #include "Node.h" using std::cin; using std::cout; using std::endl; int main() { Node firstNode{}; Node secondNode{}; Node thirdNode{}; firstNode._data = 24; secondNode._data = 16; thirdNode._data = 4; Swap(&firstNode, &secondNode); Standardize_101(&thirdNode); Square(&thirdNode); return 0; }