Write a function called add_to_array
Help with intro to C programming homework.
I need help writing this function in C.
Â
Write a function called add_to_array. This function is passed 3 parameters: an array of integers x, the length of the array len, and and incrementing value i. The function modifies the array by adding i to each element in x.
Here is the prototype for this function:
    Â
// in C, an array does not know how long it is. So its length
     // must be passed as a second parameter.
void add_to_array(int[], int, int);
Â
   And here is an example of how the function should work:
     Â
int main() {
      int numbers[ ] = {3, 6, 2, 6, 1, 0, 6};
add_to_array (numbers, 7, 2);
int i;
for (i = 0; i < 6; i++)
printf("%d ", numbers[i]);
printf("n");
  }
Â
In this case, the correct output is 5 8 4 8 3 2 8.
Answers
Status NEW
Posted 26 Apr 2017 02:04 AM
My Price 8.00
-----------
Not Rated(0)