Question: Write a C program that includes the following: 1. (3 points) A function that prints the product of even elements in array a, with the

Write a C program that includes the following:

1. (3 points) A function that prints the product of even elements in array a, with the following prototype:

void Product_Even (int *a , int size);

2. (5 points) A function that counts the multiples of 3 below each element in array a, then replaces the result with the element itself, with the following prototype:

void Replace_Elements (int *a , int size);

3. (4 points) The main function that:

-Declares integer array named Vect that contains 40 elements.

-Reads Vect from the keyboard.

-Calls Product_Even to print the product of even elements in Ex1.

-Calls Replace_Elements to replace the elements in Ex1.

Step by Step Solution

There are 3 Steps involved in it

1 Expert Approved Answer
Step: 1 Unlock blur-text-image
Question Has Been Solved by an Expert!

Get step-by-step solutions from verified subject matter experts

Step: 2 Unlock
Step: 3 Unlock

Students Have Also Explored These Related Databases Questions!