199. Lambdas and Callback Management

Question.1

A developer writes a lambda:

int threshold = 50;
auto check = [threshold](int val) {
   return val > threshold;
};

printf("%d", check(60));

What are the three parts of the lambda?

Need Help? Refer to the Quick Guide below

Select Answer