Solution for Exercise 19-1

ex1901

#include <stdio.h>

int main()
{
    int array[5] = { 2, 3, 5, 7, 11 };

    printf("'array' is at address %p\n",&array);
    return(0);
}

Notes

* Remember that the address displayed can differ from computer to computer.