#ifndef ARRAY_H #define ARRAY_H #include "Lib.h" typedef struct { int size; // 陣列目前的上限int count; // 陣列目前的元素個數void **item; ...
確定! 回上一頁