#include "PointerExercises.h" #include using std::cout; using std::endl; void Swap(Node* first, Node* second) { int temp = first->_num; first->_num = second->_num; second->_num = temp; } void Standardize_101(Node* node) { node->_num %= 101; } void Square(Node* node) { node->_num *= node->_num; }