C++ Tutorial – What Are the constexpr and constinit Specifiers?
When we write programs, many operations which are performed at runtime can actually be done at compile time – that is, baked into code.
This improves program performance since operations are no longer being computed on the fly, during runtime.
Whil...
freecodecamp.org6 min read