郁闷了,原来可以直接操作,绕那么大圈
void main()
{
STU stu1={0,10};
STU temp={12,88};
//STU * p1=&stu1;
//STU * p2=&temp;
printf("%d-%d\n",temp.name,temp.num);
temp=stu1;
printf("%d-%d\n",temp.name,temp.num);
// temp={10,10};
//printf("%d-%d\n",stu1->name,stu1->num);
// printf("%ld-\n",&stu1);
// printf("%ld-\n",stu1);
// printf("%ld-\n",&temp);
// printf("%ld-\n",temp);
// change(stu1,temp);
// temp=stu1;
// p2=p1;
// printf("%d-%d\n",p2->name,p2->num);
}