// name: Connor McDowell // date: 2/8/2024 // class: CIS116 // reason: Inclass exercise 9 #include #include "ReferenceExamples.h" using std::cin; using std::cout; using std::endl; struct node { int data; }; int main() { /*basicreferences(); node newNode = {}; newNode.data = 32; //DoublesNodeData(&newNode); cout << newNode.data << endl;*/ int x = 5, y = 72; int n = 4392; Swap(x, y); cout << "x = " << x << ", y = " << y << endl; Standardize_101(n); cout << "modded n = " << n << endl; Square(x); cout << "Squared x = " << x << " remember, x = the value of y now" << endl; return 0; }