Default constructor

why do we make default constructor in class car?

it is used to initialize the object

In C++, default constructor means a constructor that can be called with no arguments (either because it doesn’t need parameters, or because it has default values for the parameters).

but in this video there is no need of default constructor