In this article we will try to implement a C program to multiply consecutive numbers in an array. A C program is provided below to find the product of consecutive numbers in a given array. For example if the given array is: 1 2 5 4 1 2, then the output should be 1*2*1*2, […]