c語言動態內存分配之正確使用指針

#include <stdio.h> #include <stdlib.h> #include <vld.h> //正確使用指針 void test002() { int len = 25; //pi指向申請內存的指針不要動,保留內容位置 後面好釋放 int *pi = malloc( sizeof(int)*len); int *tempPi = pi; int
相關文章
相關標籤/搜索