mooc c語言 字符串比較 動態數組

動態分配數組算法 include <stdlib.h> int *a= (int*)malloc(n*sizeof(int)); free(a); //若 a++; free(a);失敗 申請哪一個地址還哪一個地址 由於malloc成功返回 void*,因此要類型轉換,沒空間了返回NULL或0數組 int *p; int i; p=&i; free(p); //錯誤 free(
相關文章
相關標籤/搜索