Hi, again, I’m wondering what is the point of using the curly initialization.
Obviously, whenever we want to save some memory space without allocating the default data to the variable. That is fully understandable. But if we have from the beginning an idea of the variable content, shouldn’t that be easier to just use the “=" operator.
int x = 5; == int x{5}; ← is this correct?