#include
#include
using namespace std;
typedef struct
{
int x;
int y;
}Coord;
int main(void)
{
Coord c;
Coord& c1 = c;
c1.x = 10;
c1.y = 20;
cout << c.x << "," << c.y << endl;
system("pause")
return 0;
}
本人新手刚学半个月 这个不知道是不是版本的问题 教程用的是vs2008版的
我现在用的是vs2019版本的 求大神指点