我有这个结构
typedef struct
{
int numberPipes; // |
int numberAmpersands; // &
int existsBiggerThan; // >
int existsLessThan; // <
int existsDoubleLargerThan; // >>
} lineData;
我在我的循环中运行一个char
数组(char *),以便找到'&'
and的所有索引'|'
。
我不知道多少钱'&'
,'|'
我会找到的。是否可以从两个malloc
大小为 1 的数组(使用)开始并在每次迭代后放大它们,只有当我发现其中一个再次出现时?