1 hour, 1 minute, 44 seconds
Stephan T. Lavavej: Everything you ever wanted to know about nullptr
(10)
In C++, 0 is an abused integer. It is used to reflect, well, 0 as a value of type int and it is also used to represent a null pointer... The latter has led to many bugs and confusion over the past 30 years. Put simply, using 0 is and has always been a bad
idea (then there's the…