Both of the following prototypes are valid:
a) int add(int nums[], int length) ;
b) int add(int nums[10], int length) ;
What do these prototypes indicate?
a) Two different functions with the same name
b) A function and its return type
c) An array of integers and its size
d) Different implementations of the same function