82. Smart Pointers-I

Question.6

A firmware engineer compares the sizes:

printf("%zu %zu",
   sizeof(std::unique_ptr<Sensor>),
   sizeof(std::shared_ptr<Sensor>));

On a 32-bit ARM, what is the likely output?

Need Help? Refer to the Quick Guide below

Select Answer