
Intro to Low Level Programming
JasperZhao901
这个作者很懒,什么都没留下…
展开
专栏收录文章
- 默认排序
- 最新发布
- 最早发布
- 最多阅读
- 最少阅读
-
Dangling pointer
A pointer pointing to a memory location that has been deleted (or freed) is called dangling pointer. // Deallocating a memory pointed by ptr causes // dangling pointer #include <stdlib.h> #in...转载 2020-04-28 04:59:13 · 258 阅读 · 1 评论 -
C free() Method
C free() method “free” method in C is used to dynamically de-allocate the memory. The memory allocated using functions malloc() and calloc() is not de-allocated on their own. Hence the free() met...转载 2020-04-28 04:54:52 · 227 阅读 · 0 评论 -
Memory Leak
转载 2020-04-28 04:50:28 · 161 阅读 · 0 评论