write an algorithm that allows a user to enter 4 elements for a2*2 array and printtheir product
Answers
Answered by
1
Answer:
Given an array, find a product of all array elements. Examples : Input : ar[] = {1, 2, 3, 4, 5} Output : 120 Product of array elements is 1 x 2 x 3 x 4 x ...
Explanation:
Similar questions