Welcome to collectivesolver - Programming & Software Q&A with code examples. A website with trusted programming answers. All programs are tested and work.

Contact: aviboots(AT)netvision.net.il

Buy a domain name - Register cheap domain names from $0.99 - Namecheap

Scalable Hosting That Grows With You

Secure & Reliable Web Hosting, Free Domain, Free SSL, 1-Click WordPress Install, Expert 24/7 Support

Semrush - keyword research tool

Boost your online presence with premium web hosting and servers

Disclosure: My content contains affiliate links.

39,990 questions

51,935 answers

573 users

How to use lambda function in C++

4 Answers

0 votes
#include <iostream>

auto sum = [](int x, int y) { return x + y; };

int main()
{
    std::cout << sum(6, 3);
}
 
 
 
 
/*
run:
 
9

*/

 



answered Nov 28, 2022 by avibootz
0 votes
#include <iostream>

int main()
{
    auto sum = [](int x, int y) { return x + y; };
    
    std::cout << sum(6, 3);
}
 
 
 
 
/*
run:
 
9

*/

 



answered Nov 28, 2022 by avibootz
0 votes
#include <iostream>

int main()
{
    auto isGreater = [](int x, int y) { return x > y; };
    
    std::cout << isGreater(6, 3);
}
 
 
 
 
/*
run:
 
1

*/

 



answered Nov 28, 2022 by avibootz
0 votes
#include <iostream>

int main()
{
    auto sum = [](auto x, auto y) { return x + y; };
    
    std::cout << sum(3.14, 0.000056);
}
 
 
 
 
/*
run:
 
3.14006

*/

 



answered Nov 28, 2022 by avibootz

Related questions

4 answers 85 views
1 answer 148 views
1 answer 194 views
1 answer 143 views
1 answer 152 views
1 answer 159 views
...