结构体代码演示为什么出错
#include<iostream>
#include<stdlib.h>
using namespace std;
typedef struct
{
int x;
int y;
}abc;
int main(void)
{
abc c;
abc &c1 = c;
c1.x = 10;
c.y = 20;
cout << c.x << "," << c.y << endl;
system("pause");
return 0;
}
错误 1 error C2144: 语法错误:“abc”的前面应有“}”
错误 4 error C4430: 缺少类型说明符 - 假定为 int。注意: C++ 不支持默认 int
为什么出现一大堆错误