// Your name goes here #include #include #include #include #include #include /* What are pointers for: * Accessing array elements * Passing arguments to a function when the function needs to modify the original argument. * Passing arrays and strings to functions Every byte in the computers memory has an address. Your program, when loaded into memory, occupies a certain range of these addresses. That means that every variable and every function in your program starts at a particular address. The Address-of Operator & */ int var4 = 44 ; int var5 = 55 ; int var6 = 66 ; void main ( ) { cout << endl << "var4 = " << var4 << " var5 = " << var5 << " var6 = "<