Write a c++ program to add andmultiply elements in two arrays. Use operator over
ID: 3614477 • Letter: W
Question
Write a c++ program to add andmultiply elements in two arrays. Use operator overloading foraddition
and multiplication using two friendfunctions. Also the size of each array should bespecified
dynamically by entering them from console,and the size of array should be set during the
construction of an object. If the two arrayshave different sizes, then you can just copy the restof
the elements into a result object. Finally,use the ">>" operator overloading to enter theelements
of the array, and use "<<" operator overloading to outputthe results of addition and multiplication.