232k views
2 votes
What does "void (*fp2[10])(double);" mean?

a) fp2 is an array of 10 pointers to functions that take doubles and return nothing
b) fp2 is a pointer to a function that takes an array of 10 doubles
c) fp2 is an array of 10 doubles
d) fp2 is an array of 10 pointers to functions that take doubles and return integers

User Witrin
by
7.8k points

1 Answer

6 votes

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.

User Bivas
by
7.7k points