0_0_35807507_14610.c:9:1: error: unknown type name 'Point'
Point p[100005];
^
0_0_35807507_14610.c: In function 'main':
0_0_35807507_14610.c:20:8: error: 'false' undeclared (first use in this function)
flag=false;
^
0_0_35807507_14610.c:20:8: note: each undeclared identifier is reported only once for each function it appears in
0_0_35807507_14610.c:24:22: error: request for member 'x' in something not a structure or union
scanf("%d%d",&p[i].x,&p[i].y);
^
0_0_35807507_14610.c:24:30: error: request for member 'y' in something not a structure or union
scanf("%d%d",&p[i].x,&p[i].y);
^
0_0_35807507_14610.c:30:18: error: request for member 'x' in something not a structure or union
absx=abs(p[i].x-p[j].x);
^
0_0_35807507_14610.c:30:25: error: request for member 'x' in something not a structure or union
absx=abs(p[i].x-p[j].x);
^
0_0_35807507_14610.c:31:18: error: request for member 'y' in something not a structure or union
absy=abs(p[i].y-p[j].y);
^
0_0_35807507_14610.c:31:25: error: request for member 'y' in something not a structure or union
absy=abs(p[i].y-p[j].y);
^
0_0_35807507_14610.c:36:11: error: 'true' undeclared (first use in this function)
flag=true;
^
|