Problem Statement: Multiplication of two objects of same class
• Write a class. Class should have an array of 10 integers as its private data member.
Class should have
• A default constructor which will initialize all array elements with zero.
• Getter and setter functions
• An operator overloading function which will overload * operator for this class.

  1. Create three objects of the same class.
  2. Must assign values to first and second objects through setter functions. You can either take input arrays from user or use hard coded values.
  3. Display the values of first and second object through getter functions.
  4. Multiply both objects and store the result of multiplication in third object.
  5. Multiplication means the 1st element of member array of object1 should be multiplied by 1st element of member array of object2. Similarly, 2nd element should be multiplied with 2nd and so on. In the end, display the result stored in third object.
  6. Your program should support the statement like a = b * c, where a, b and c are objects of the same class.

-------------------------------------------------------------------------
Sample output:
Object 1 :
1
2
3
4
5
6
7
8
9
10

Object 2 :
10
9
8
7
6
5
4
3
2
1

Multiplication of both objects :
10
18
24
28
30
30
28
24
18
10