← Back to Question List
C++ Quiz #21
Unfreed Heap Memory
This code compiles and runs, but it has a problem. What is the issue?
📄 Code
1#include <iostream>2using namespace std;34void createValue() {5 int* p = new int(42);6 cout << *p << endl;7}89int main() {10 createValue();11 return 0;12}