A program in c that adds and subtracts two arrays of size (3 rows of 4 columns) using functions to add the arrays and subtract them.
- Prompt the user give data for the first array: 4 real numbers (type double) per line separated by spaces
- prompt the user to enter the data for the second array
- call a function that you write to add two arrays
-call a function to subtract the second array from the first array and place the result in another array
-Print each array to the screen, with line of text that says which array it is.