#include <iostream>

int main() {
    using namespace std;
    int *ptr=new(int);//or new(6); 6 is value
    *ptr=6;
    cout<<*ptr<<endl;
    delete ptr;
    ptr = nullptr;
}

Embed on website

To embed this project on your website, copy the following code and paste it into your website's HTML: