#include const int SIZE=100; void getArray(double[], int&); void printArray(const double[], const int); void main() { double a[SIZE]; int n; getArray(a,n); cout<<"The array has "<>a[n]; if(a[n]==0) break; }; } void printArray(const double a[], const int n) { for (int i=0;i