Which of the following is false with regard to pointers to functions?
(a) They contain the starting address of the function code.
(b) They”re dereferenced in order to call the function.
(c) They can be stored in arrays.
(d) They cannot be assigned to other function pointers
Which statement is false?
a) A recursive function is a function that calls itself either directly or indirectly through
another function.
b) A recursive function knows how to solve only one or more base cases.
c) The recursion step executes after the original call to the function terminates.
d) In order for the recursion to eventually terminate, each time the function calls itself
with a slightly simpler version of the original problem, this sequence of smaller and
smaller problems must eventually converge on a base case.
Conversion specifier s requires a(n) __________ argument.
a) pointer to char