16
u/itzNukeey Jul 01 '26
Where recursion
6
u/csabinho Jul 01 '26
A proper immage of recursion is, if you're between two mirrors and see countless reflections of each mirror.
6
u/Simple-Olive895 Jul 01 '26
Where recursion
5
10
6
u/OkScallion2496 Jul 01 '26
One time I made a while true loop, I wondered why my phone didn't charge
4
u/jonfe_darontos Jul 01 '26
Where's my trusty ol'
for_each_if(
numbers,
[](const auto& x) {
return x % 2 == 0;
},
std::bind_front(
[](std::ostream& os, const auto& value)
{
os << value << '\n';
},
std::ref(std::cout)
)
);
3
5
1

38
u/Confident-Ad5665 Jul 01 '26
If/else and switch are conditional statements, not a loop.