What is specified by the keyword const in the following
function prototype?

void func( const int a[], int
numElements );

Answer a. The elements in the array must be initialized to constant
values before the function is called.
b. The function cannot change any of the elements in the array
c. The actual array passed as a parameter must always be
the same size.
d. The value returned by the function must be a constant