If the class doesn\'t have the constructor, will the compiler make one default constructor for it ?
Programmers new to C++ often have two common misu
Yes a default constructor is always there by default if you don't define a constructor of your own (see the default constructor section here).