#include using namespace std; // import / streamline an array // myArrayImport1.cpp // both integer and pointer can return the values // pointer can alter the values at the address // intger does it as a soft (not deep) copy. int get_array(int x); int *ref_add; int main() { int a2 , *a3, *a4; cout<<"\n retreiving array "; for(int i= 0; i < 4; i++) { a2 = get_array(i); *a3 = get_array(i); *a4 = *a3; cout<<"\n round " << i << " a2 value :" <