//--- Demonstration of pointer variables and addresses // -- augmented version of example Fig2-4.cpp from Nyhoff, // "ADTs, Data Structures and Problem Solving with C++" #include using namespace std; int main() { int i = 11, j = 22; double d = 3.3, e = 4.4; // Declare pointer variables that: int * iPtr, // store addresses of ints * jPtr; double * dPtr, // store addresses of doubles * ePtr; iPtr = &i; // value of iPtr is address of i jPtr = &j; // value of jPtr is address of j dPtr = &d; // value of dPtr is address of d ePtr = &e; // value of ePtr is address of e cout << "&i = " << iPtr << endl << "&j = " << jPtr << endl << "&d = " << dPtr << endl << "&e = " << ePtr << endl; // ------------------------------------------------ // NEW STUFF -----------------------------------RJI // ------------------------------------------------ int *pInt = new int; // DYNAMIC ALLOCATION OF NEW int double *pDouble = new double; // DYNAMIC ALLOCATION OF NEW double cout << "----------------------------------------\n"; cout << "pInt = " << pInt << endl << "pDouble = " << pDouble << endl; delete pInt; // RETURN ALLOC'D int SPACE TO HEAP delete pDouble; // RETURN ALLOC'D double SPACE TO HEAP }