Memory Leaks Every new needs a corresponding delete int main() { int *data = new int(4); data = new int(12); data = new int(42); delete data; }