Computer Science, asked by Priyanshijha8586, 5 hours ago

write an algorithm that allows a user to enter 4 elements for a2*2 array and printtheir product

Answers

Answered by johnjero2836
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