What is Return Value Optimization(RVO) ?
Run the following example in any C++ environment of your choice, What would be output that you're expecting ?
#include<iostream>
struct Box {
Box() = default;
Box(const Box&) {
std::cout << "Copy Constructor being called \n";
}
};
Bo...
cppnuggets.hashnode.dev1 min read