// 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 newNode{}; int i; cin >> i; newNode.data = i; cout << newNode.data << endl; Node nextNode{}; nextNode.data = 438; newNode.next = &nextNode; cout << nextNode.data << endl; 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); cout << nextNode.data << endl; return 0; }