Code C++ 8.5 Perform the task specified by each of the following statements: a)
ID: 3719285 • Letter: C
Question
Code C++
8.5 Perform the task specified by each of the following statements: a) Write the function header for a function called exchange that takes two pointers to dou c) Write the function header for a function called evaluate that returns an integer and d) Write the function prototype for the function in part (c) ble-precision, floating-point numbers x and y as parameters and does not return a value. the function prototype for the function in part (a). that takes as parameters integer x and a pointer to function poly. Function poly takcs an integer parameter and returns an integer. Write two statements that each initialize character array vowel with the string of vowels, "AEIOU" e)Explanation / Answer
a) void zero(long bigIntegers[])
b) void zero(long[]);
c) int add1AndSum(int oneTooSmall[])
d) int add1AndSum(int []);
e) int void vowels ("AEIOU"[])