C++ - useful magic keywords
nullptr is the replacement for NULL macro in C. Using nullptr allows any pointer type but not integer. When NULL is used instead, 0 can add uncertainty of intention in code.
const uint32_t *ptr = nullptr;
constexpr is constant expression. The ben...
hyunwoochoi.hashnode.dev2 min read