๐ Bug HuntC+ C++ Mediumโก+20 XP
Raw Pointer Memory Leak
This code leaks memory.
๐ Find the bug
1
void createObj() {2
MyClass* obj = new MyClass();3
obj->doWork();4
} // obj destroyed without delete๐ The bug is on line 4