In today's video, we are discussing Lambda Expressions/Functions
Lambda expression was introduced in C++ 11 to allow inline Function creation/code writing. It allows us to write a code for an inline function that is not to be reused or doesn't require reuse for the same. Hence, the Anonymous function can be created in C++ 11, and it's known as the Lambda function.
So basically lambda expression allows defining functions locally. Also, it allows defining function at the place of the call, hence eliminating much of the complexity and security risks.