#include #include #include using namespace std; void generateArray(double a[], int si, double b[]) { for (int j = 0; j < si; j++) { srand (time(NULL)); a[j] = rand() % 9; cout << "Output ="<< a[j] <> size ; double a[size]; double b[size]; generateArray(a, size, b ); // storeArray(a,size, b) ; cout << "NOW WE TEST" << endl; cout << "b = [ " ; for (int k =0 ;k< size ; k++) cout << b[k] << " " ; cout << "]"<< endl; return 0; }