VN
Size: a a a
VN
VN
int **a4 = new int*[32768];
for (int count = 0; count < 32768; count++)
a4[count] = new int[32768];
for (size_t i = 0; i < n; ++i)
for (size_t j = 0; j < n; ++j) {
a4[i][j] = rand();
}
JF
VN
VN
VN
int main()
{
const size_t size = 32768 * 32768;
srand(*reinterpret_cast<const int*>(&size));
std::unique_ptr<int[]> data(new int[size]);
for (size_t i = 0; i < size; ++i)
{
data[i] = rand();
}
return 0;
}
VN
JF
JF
JF
VN
JF
К
К
️️
️️
️️
К
JF