memalloc prac
#include <iostream>
using std::string, std::cout, std::endl;
string *x = new string("Yy");
char *y = new char[10];
int main() {
y[3] = 'b';
cout << y[3] << endl << *x << endl;
delete[] y;
delete x;
return 0;
}INFO