int* p=NULL; int len=5; // 要求空間 p = (int*)calloc(len, sizeof(int)); // 陣列內容會初始化為0 p = (int*)malloc(len* sizeof(int)); // 陣列 ...
確定! 回上一頁