#include<stdio.h>

/**
 * Terry Harvey CIS 105 Section 010 TA Tina Weymouth
 *  Demonstration program
 **/

int main(){

    int n = 7;
    int * ip = &n;

    //print the address of n
    printf("%p\n", &n);
    printf("%p\n", ip);

    //print the contents of n by using ip
    printf("%d\n", *ip);

    return 0;

}


