199. Lambdas and Callback Management

Question.11

A developer tries to explicitly type a lambda:

// What type is this?
??? cb = [x](int val) { return val + x; };

Can you write the lambda's type explicitly?

Need Help? Refer to the Quick Guide below

Select Answer