/*Define an int* pointer variable a. Then: (1) Use new to make a point to a dynamic array of 5 cells of type int. (2) Write a loop to fill a with values 3, 7, 11, 15, 19. (3) Write a loop to print the values in a with one cell per line. (4) Delete the dynamic memory allocated to a using delete [].*/ #include "Riostream.h" void Exercise7(){ int n; int * a; a = new int[5]; a[0]=3; a[1]=7; a[2]=11; a[3]=15; a[4]=19; for (n=0; n<5; n++) { cout << "Pointer address: "<<&a[n]<