ComputerScienceExpert

(11)

$18/per page/

About ComputerScienceExpert

Levels Tought:
Elementary,Middle School,High School,College,University,PHD

Expertise:
Applied Sciences,Calculus See all
Applied Sciences,Calculus,Chemistry,Computer Science,Environmental science,Information Systems,Science Hide all
Teaching Since: Apr 2017
Last Sign in: 103 Weeks Ago, 2 Days Ago
Questions Answered: 4870
Tutorials Posted: 4863

Education

  • MBA IT, Mater in Science and Technology
    Devry
    Jul-1996 - Jul-2000

Experience

  • Professor
    Devry University
    Mar-2010 - Oct-2016

Category > Programming Posted 26 Apr 2017 My Price 8.00

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

(11)
Status NEW Posted 26 Apr 2017 02:04 AM My Price 8.00

-----------

Not Rated(0)