C语言一道小小的填空题。空子在【 】里

C语言一道小小的填空题。空子在【 】里下列程序将结构变量stud1 的值赋给结构变量stud2。
#include<stude.h>
#include<string.h>
main()
{
static struct student{
int num;
char name[20];
int score;
}
stud1 ={ 0213147,“Zhang Hong”,92};
【 】
print(“%d%d”,stud2.num,stud2.score);
return 0;
}

麻烦填一下【 】中的空。

stud2 = stud1
温馨提示:答案为网友推荐,仅供参考