C++里面能不能直接给结构体赋值?
发布网友
发布时间:2022-04-20 01:28
我来回答
共1个回答
热心网友
时间:2023-10-18 19:05
可以。下面是例子:
#include<stdio.h>
struct pp {
int id;
float x;
float y;
} A,B;
int main()
{
A.id= 3;
A.x = 12.3;
A.y = 45.6;
B = A;
printf("%d %g %g\n",B.id, B.x, B.y);
return 0;
}
输出: 3 12.3 45.6