...

/

Quiz on Function Pointers, Delegates, and Lambdas

Quiz on Function Pointers, Delegates, and Lambdas

Here is a quiz to test your understanding of the concepts related to function pointers, delegates, and lambdas.

We'll cover the following...
Technical Quiz
1.

What is the correct way to define a function pointer?

A.

function return_type (parameters) ptr;

B.

function ptr return_type(parameters);

C.

return_type function(parameters) ptr;

D.

None of these


1 / 5