You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
This repo is archived. You can view files and clone it, but cannot push or open issues/pull-requests.

23 lines
413 B
C++

#include <iostream>
#include "miptstring.cpp"
using std::cout, std::endl;
int main() {
mipt::String stack{"Cat"};
cout << stack << endl;
mipt::String* heap = new mipt::String{"Dog"};
cout << *heap << endl;
char *x = (char*)malloc(sizeof(mipt::String));
mipt::String* px = new(x) mipt::String{"Elephant"};
cout << *px << endl;
px->~String();
free(px);
delete heap;
}