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