1. Perform the task in each of the following statements:
a) Write the function header for function zero that takes a long integer built-in 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 function add1AndSum that takes an integer built-in array parameter oneTooSmall and returns an integer.
d) Write the function prototype for the function described in part (c).
a) void zero(long bigIntegers[], unsigned int size)
b) void zero(long bigIntegers[], unsigned int size);
c) int add1AndSum(int oneTooSmall[], unsigned int size)
d) int add1AndSum(int oneTooSmall[], unsigned int size);
Comments
Leave a comment