CJCoding With Joseph

Lambda to Add Two Numbers

Use a C++ lambda to add two numbers. Define a lambda stored in auto add that takes two ints and returns their sum, then call add(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.