mem prac
#include <iostream>
using namespace std;
int main() {
int *x = new int[100];
for(int i = 0; i < 99; i++) {
x[i] = i;
}
cout
<< x << endl
<< x[0] << " " << *x << endl
<< x[1] << " " << *(x+1) << endl
<< x[90] << " " << *(x+90) << " " << x+90;
delete[] x;
return 0;
}INFO