โ Back to Functions
Question 415
Lambda to Add Two Numbers
Lambda to Add Two Numbers
Use a C++ lambda to add two numbers. Define a lambda stored inauto addthat takes twoints and returns their sum, then calladd(3, 4)and print the result: 7 A lambda has the form[](parameters) { body }.
Expected Output:
7
Topics:
Functions
Code Editor
1
Tab to indent ยท Ctrl+Enter to run ยท Ctrl+Space to expand shortcuts (cout, fori)
Your Output
Run your code to see the output here...
Test Cases
Run your code to see test case results.