Question: Modify an array's elements. Double any element's value that is less than minVal. Ex: If minVal = 10, then dataPoints = {2, 12, 9, 20}

 Modify an array's elements. Double any element's value that is less

Modify an array's elements. Double any element's value that is less than minVal. Ex: If minVal = 10, then dataPoints = {2, 12, 9, 20} becomes {4, 12, 18, 20}. 1 #include 3 int main(void) {4 const int NUM_POINTS = 4; 5 int dataPoints[NUM_POINTS]; 6 int minVal = 0; 7 int i = 0; 8 9 dataPoints[0] = 2; 10 dataPoints[1] = 12; 11 datapoints[2] = 9; 12 dataPoints[3] = 20; 13 14 minVal = 10; 15 16/* Your solution goes here */17 18 for(i = 0; i

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!