📅  最后修改于: 2022-03-11 15:04:41.029000             🧑  作者: Mango
struct Items
{
char code[10];
char description[30];
int stock;
};
void ReadFile(struct Items items[10])
{
...
}
void xxx()
{
struct Items MyItems[10];
ReadFile(MyItems);
}