Suppose I have a C++ class for whom I didn't write any constructor. What will be the difference between these 2 lines:
1. Complex* parray = new Complex[10];
2. Complex* parray2 = new Complex[10]();
Will behaviour will change if constructors will be provided.