这个时候,输出*p会发生什么
struct student{
string name;
int age;
int score;
};
void main()
{
struct student s1={"张三",18,100};
struct student *p=&s1;
请问到了这一步,*p里面保存的是什么东西
如果cout<<*p会发生什么
2022-08-02 02:09
2022-08-02 07:52
2022-08-02 09:07
[此贴子已经被作者于2022-8-5 20:36编辑过]

2022-08-05 08:44
2022-08-05 08:57
2022-08-10 11:48