数组的一些相关操做

#include <stdio.h> #include <stdlib.h> #include <stdbool.h> #include <malloc.h> //定义数据类型 array typedef struct Array { int *arrpBase; //存储数组首元素的地址 int arrLength; //数组所能容纳最大元素个数 int arrAcount;
相关文章
相关标签/搜索