Respuesta :
e. void f1(const int array[ ], int size);
So, if you want a function declaration which guarantee that the function will not change any values in the array argument use the keyword "const".
It creates a constant reference to an array.
What is Array in Programming languages?
A collection of elements (values or variables) that are each identified by at least one array index or key make up an array, which is a type of data structure.
Depending on the language, additional data types that describe aggregates of values, like lists and strings, may overlap (or be identified with) array types.
Array data structures are frequently used to construct array types, but other tools like hash tables, linked lists, or search trees may also be used. The default array data structure in Python is a list.
Array definition in different Languages:
JavaScript var ages = [49, 8, 2, 19, 16];
Python ages = [49, 8, 26, 19, 6]
C# int[] ages = {9, 8, 26, 19, 16};
Java int[] ages = {49, 8, 26, 1, 16};
C++ int ages[] = {49, 8, 6, 19, 16};
To know more about Array, visit: https://brainly.com/question/19634243
#SPJ4