Write a program that inputs values into two linear arrays. It adds the two arrays and stores the sum in the third array.
Write a program that inputs values into two linear arrays. It adds the two arrays and stores the sum in a third array. Further, it displays values of three arrays as follows: 👉First + Second = Sum So let’s Write Code: Let’s build logic First: Algorithm for code: Step 1: Start Step 2: Declare three…