動態內存管理(malloc、 free、 calloc、 realloc)

1.malloc 聲明:void *malloc(size_t size); 功能:向系統申請分配指定size個大小的字節空間。返回值爲void * 使用示例:int *p = (int *)malloc(10 * sizeof(int)); 注意:在使用這塊內存前,必須判斷malloc是否申請內存成功(if (p == NULL)),若是內存滿了,就會申請失敗。 ★free(p) 當你不使用這塊
相關文章
相關標籤/搜索