Guest User

Untitled

a guest
May 26th, 2018
98
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.50 KB | None | 0 0
  1. int main(){
  2. int* p = new int[2];
  3. delete p;
  4. return 0;
  5. }
  6.  
  7. ==3147== HEAP SUMMARY:
  8. ==3147== in use at exit: 72,704 bytes in 1 blocks
  9. ==3147== total heap usage: 2 allocs, 1 frees, 72,712 bytes allocated
  10. ==3147==
  11. ==3147== LEAK SUMMARY:
  12. ==3147== definitely lost: 0 bytes in 0 blocks
  13. ==3147== indirectly lost: 0 bytes in 0 blocks
  14. ==3147== possibly lost: 0 bytes in 0 blocks
  15. ==3147== still reachable: 72,704 bytes in 1 blocks
  16. ==3147== suppressed: 0 bytes in 0 blocks
Add Comment
Please, Sign In to add comment