array fill c programming

Ace your studies with our custom writing services! We've got your back for top grades and timely submissions, so you can say goodbye to the stress. Trust us to get you there!


Order a Similar Paper Order a Different Paper

Write a function called RandomArrayFill that inputs (i.e., takes a parameter) an integer array, and also that inputs (i.e., takes a parameter) an integer, which contains the size of the array. The function is then to write a random number, in the range [0, 100], to each element of the array. The function declaration of this function should look like so:

void RandomArrayFill(int* array, int size);

Now write a program that asks the user to input the size of an integer array. The program then needs to create an array of exactly this size. Next, the program must pass this created array to the RandomArrayFill function, so that a random number is assigned to each element of the array. After which, the program must output every array element to the console window. Your program output should look similar to this:

Enter the size of an array to create: 6

Creating array and filling it with random numbers… Array = {57, 23, 34, 66, 2, 96}

Press any key to continue

After you finish implementing the above function, rewrite it again, but this time using std::vector. The function declaration of this new function should look like so:

void RandomArrayFill(std::vector& vec)

Writerbay.net

Looking for top-notch essay writing services? We've got you covered! Connect with our writing experts today. Placing your order is easy, taking less than 5 minutes. Click below to get started.


Order a Similar Paper Order a Different Paper