I want to create in C++ an array of Objects without using STL.
How can I do this?
How could I create array of Object2, which has no argumentless constructor
If no default constructor is available, you will need an array of pointers, and then loop over that array to initialize each of the pointers.