如果这是一个重复的问题,我深表歉意,但我似乎无法找到关键字来搜索我要问的问题。
基本上,我已经为自己定义了一个结构。
#define max_terms 101
typedef struct{
int row, col, value;
} term;
现在我有三个不同的术语,即 a[max_terms]、b[max_terms] 和 c[max_terms] 我想输入以下函数的参数,以便我可以选择处理三个定义的数组中的哪一个
void input(/*parameter here*/){
a[0].row = 0; // want to be able to choose the array to work on instead of just a
}
感谢您的阅读!