Skip to content

Instantly share code, notes, and snippets.

@junaidrahim
Last active August 19, 2020 08:20
Show Gist options
  • Save junaidrahim/b586f1a27f2071ddd5aacced3f40d795 to your computer and use it in GitHub Desktop.
Save junaidrahim/b586f1a27f2071ddd5aacced3f40d795 to your computer and use it in GitHub Desktop.
Memory Leak
int main(){
int *p = new int[10];
// oops forgot to delete p
return 0;
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment