Final answer:
fp2 is an array of 10 pointers to functions that take doubles and return nothing
Step-by-step explanation:
The expression 'void (*fp2[10])(double);' means that fp2 is an array of 10 pointers to functions that take doubles and return nothing. In other words, each element of the array fp2 is a pointer to a function that takes a double as an argument and has a void return type.