C++ Perform the task specified by each of the following statements: a) Write the function header for function zero that takes a long integer array parameter bigIntegers and does not return a value.b) Write the function prototype for the function in part (a). c) Write the function header for the function add1AndSum that takes an integer array parameter oneTooSmall and returns an integer.d) Write the function prototype for the function described in part (c).

See Answers (1)

Accepted Answer

Using the knowledge in computational language in C++ it is possible to write the code that write the function header for function zero that takes a long integer array parameter bigIntegers and does not return a value.Writting the code:a) void zero (long bigIntegers[], int size) //function header{//Body of function}b) void zero (long [], int); //function prototypec) int add1AndSum (int oneTooSmall[], int size)//function header{//Body of function}d) int add1AndSum (int [], int); //function prototypeSee more about C++ at brainly.com/question/29225072#SPJ1

Related Question in Computers and Technology