Код: Выделить всё
#include
#include
int main(void)
{
auto arr = std::make_unique(10);
return EXIT_SUCCESS;
}
Подробнее здесь: https://stackoverflow.com/questions/792 ... r-not-in-c
Код: Выделить всё
#include
#include
int main(void)
{
auto arr = std::make_unique(10);
return EXIT_SUCCESS;
}