Question: 1. a) b) C++ 1) Write a maxConsecutive Diff function which returns the maximum difference between any two consecutive values in the array. Consecutive values
1.
a)

b)

C++
1) Write a maxConsecutive Diff function which returns the maximum difference between any two consecutive values in the array. Consecutive values are next to each other in an array (+/- 1 index) This function should accept all required data as parameters. Examples If the array is 17 15 16 11 14 the maximum consecutive difference is 5 which is the difference between 16 and 11. If the array is 10 13 11 12 19 the maximum consecutive difference is 7 which is the difference between 12 and 19. Write one line of code to print a random value between -10 and 10 inclusive
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
