There is a structure:
struct A{ char * buf; A(int size){ buf = new char[size]; } }; I want to create an array of objects A with the specified size.
A * a = new A[10](10); // 10 объектов, должны конструироваться через A(int size) but it does not work.