К
Size: a a a
К
T
.
🎄T
#include <iostream>
#include <string>
int main() {
std::string *test = new std::string();
delete test;
std::string *test2 = new std::string();
*test = "ti pidor";
std::cout << *test2;
}
.
c++
#include <iostream>
#include <string>
int main() {
std::string *test = new std::string();
delete test;
std::string *test2 = new std::string();
*test = "ti pidor";
std::cout << *test2;
}
ti pidor
cplusplus_gcc assumed, other valid options are cplusplus_clang, visual_cplusplus, you can be more specific next time.
К
К
К
🎄T
К
Э
К
.
Э
.
T
T
🎄T
T