怎么将结构数组作为参数 ?
比如
typedef struct{
int count;
char string[100];
} Node;
Node store[100];
怎样将store[ i ].string[ j ] 作为参数 对store[ i ].string 进行遍历??
比如
typedef struct{
int count;
char string[100];
} Node;
Node store[100];
怎样将store[ i ].string[ j ] 作为参数 对store[ i ].string 进行遍历??
就是在store数组里存了许多字符串string,现在要变一个函数对它进行排序
例如:store[0].string="3330000"
store[1].string="3322777"
store[2].string="5555555"
.......