Computer Science, asked by abhijeetbhosale253, 9 hours ago

write a function that uses pointers to copy an array of double​

Answers

Answered by adnanqud
0

Answer:

Logic to copy one array to another array using pointers

Declare another array say dest_array to store copy of source_array . Declare a pointer to source_array say *source_ptr = source_array and one more pointer to dest_array say *dest_ptr = dest_array

Explanation:

hope it helps you

Similar questions