new
// Create a new object using the default constructor
Person* p = new Person();// Create an array of 100 integers using the default constructor
int* arr = new int[100];// Create a dynamically sized array using the `std::vector` class
std::vector<int> v(100);class MyClass {
public:
MyClass() {}
~MyClass() {}
};
// Create a new instance of the `MyClass` class
MyClass* obj = new MyClass();