Jump to

v06-l2-howTo

How to deallocate the object referred with value in the following program ?

int main() {
    double& value = *(new double(1.0));
}

???