求助,这个错误我不知道 illegal, left operand has type 'char [10]'
illegal, left operand has type 'char [10]'这个错误说的是什么意思?
百度了也说比清楚
Teacher::Teacher(char n[10], char s[2])//构造函数
{
name[10]=n[10];
sex[2]=s[2];
cout<<"名字:"name<<":"<<"编号:"<<num<<endl;
}