- What is the simplest lambda you can write?
- How can you write a lambda that concatenates two string values passed as parameters?
- What happens if one of the values is a variable that's captured by value?
- What happens if one of the values is a variable that's captured by reference?
- What happens if one of the values is a pointer that's captured by value?
- What happens if one of the values is a pointer that's captured by reference?
- What happens if both values are captured by value using the default capture specifier?
- What happens if both values are captured by reference using the default capture specifier?
- How can you write the same lambda as a data member in a class that has the two string values as data members?
- How can you write the same lambda as a static variable in the same class?




















































