gets(temp.eng)/gets(temp.chi)中的.eng和.chi是什么意思啊?

来源:百度知道 编辑:UC知道 时间:2024/05/15 18:41:36

temp应该是一个结构类型
里面的字串

如:
struct _test
{
char eng[20];
char chi[20];
};

struct _test temp;
就是输入结构的eng和chi

我猜测:
eng是english,即英语
chi是chinese,即汉语