SophiaPretty

(5)

$14/per page/Negotiable

About SophiaPretty

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

Expertise:
Accounting,Algebra See all
Accounting,Algebra,Applied Sciences,Architecture and Design,Art & Design,Biology,Business & Finance,Calculus,Chemistry,Communications,Computer Science,Economics,Engineering,English,Environmental science,Essay writing Hide all
Teaching Since: Jul 2017
Last Sign in: 304 Weeks Ago, 1 Day Ago
Questions Answered: 15833
Tutorials Posted: 15827

Education

  • MBA,PHD, Juris Doctor
    Strayer,Devery,Harvard University
    Mar-1995 - Mar-2002

Experience

  • Manager Planning
    WalMart
    Mar-2001 - Feb-2009

Category > Computer Science Posted 25 Dec 2017 My Price 7.00

function is passed 3 parameters: an array of integers

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

(5)
Status NEW Posted 25 Dec 2017 01:12 PM My Price 7.00

-----------  ----------- H-----------ell-----------o S-----------ir/-----------Mad-----------am ----------- Th-----------ank----------- yo-----------u f-----------or -----------you-----------r i-----------nte-----------res-----------t a-----------nd -----------buy-----------ing----------- my----------- po-----------ste-----------d s-----------olu-----------tio-----------n. -----------Ple-----------ase----------- pi-----------ng -----------me -----------on -----------cha-----------t I----------- am----------- on-----------lin-----------e o-----------r i-----------nbo-----------x m-----------e a----------- me-----------ssa-----------ge -----------I w-----------ill----------- be----------- qu-----------ick-----------ly

Not Rated(0)