- 博客(1)
- 收藏
- 关注
原创 C的内存管理(malloc、free)入门的注意事项
malloc和free的一个简单例子#include <stdio.h> #include <stdlib.h> #include <string.h> typedef struct { int number; char *msg; } unit_t; int main(void) { unit_t *p = malloc(sizeof(unit_t)); if...
2018-04-28 11:43:50 499
空空如也
空空如也
TA创建的收藏夹 TA关注的收藏夹
TA关注的人