#include<stdio.h>

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

int main(){

    int data[] = {5,6,7};

    printf("The name of an array is an address\n");

    printf("The address of the array data is %p\n", data);

    return 0;

}


