So today i was learning about c++ lambda functions. and i have some doubts.
Q.1) See this
why the output is 2?
Q.2) another question
This is giving me runtime error why?
tell me
# | User | Rating |
---|---|---|
1 | tourist | 4009 |
2 | jiangly | 3821 |
3 | Benq | 3736 |
4 | Radewoosh | 3631 |
5 | jqdai0815 | 3620 |
6 | orzdevinwang | 3529 |
7 | ecnerwala | 3446 |
8 | Um_nik | 3396 |
9 | ksun48 | 3388 |
10 | gamegame | 3386 |
# | User | Contrib. |
---|---|---|
1 | cry | 164 |
1 | maomao90 | 164 |
3 | Um_nik | 163 |
4 | atcoder_official | 161 |
5 | -is-this-fft- | 158 |
6 | awoo | 157 |
7 | adamant | 156 |
8 | TheScrasse | 154 |
8 | nor | 154 |
10 | Dominater069 | 153 |
Two Questions about c++ lambda functions. [Must Read]
So today i was learning about c++ lambda functions. and i have some doubts.
Q.1) See this
function<int(int,int)> sum = [&](int a, int b)
{
++a;
return a+b;
};
int a = 2, b = 3;
int s = sum(a, b);
cout << a << endl;// why it's 2 i have passed 'a' with refrence. how to pass it with refrence.
Q.2) another question
function<int(int)> get2;
cout << get2(3);
get2 = [&](int a)
{
return a;
};
tell me
Rev. | Lang. | By | When | Δ | Comment | |
---|---|---|---|---|---|---|
en3 | Boring_Day | 2022-10-06 09:47:31 | 225 | |||
en2 | Boring_Day | 2022-10-06 06:58:39 | 38 | |||
en1 | Boring_Day | 2022-10-06 06:55:35 | 889 | Initial revision (published) |
Name |
---|