class c{};
c *ar[2];
ar = {new c, new c}; //error
"Array type is not assignable"
How to assign it after declaring it, i want to do that because the class is using that variable so i just want to declare it, create a class and then assign the value, i can't assign before the class because it can't make a new c without defing the class first.
std::arrayinstead.