In C programming:
Write a program that initializes an array-of-double and then
copies the contents of the array into another arrays. To make the
copy, use a function with array notation. This function takes two
arguments the name of the target array and the number of elements
to be copied. That is, the function calls would look like this,
given the following declarations:
double source[5] ={1.1, 2.2, 3.3., 4.4, 5.5};
double target1[5];
double target2[5];
copyarr(source, target1, 5);