Question: In the C language Double any element's value that is less than controlVal. Ex: If controlVal = 10, then dataPoints = {2, 12, 9, 20}
In the C language Double any element's value that is less than controlVal. Ex: If controlVal = 10, then dataPoints = {2, 12, 9, 20} becomes {4, 12, 18, 20}.
#include
int main(void) { const int NUM_POINTS = 4; int dataPoints[NUM_POINTS]; int controlVal; int i;
scanf("%d", &controlVal);
for (i = 0; i < NUM_POINTS; ++i) { scanf("%d ", &(dataPoints[i])); }
/* Your solution goes here */
for (i = 0; i < NUM_POINTS; ++i) { printf("%d ", dataPoints[i]); } printf(" ");
return 0; }
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
