In the below code I could not understand what does ::
before array add[i]
means. Can anyone give me a general idea of what does this means in c++ if added before array data structure?(This is general for reference only code)
#define FOR(ii,aa,bb) for(int ii=aa;ii<=bb;ii++)
FOR(i, 1, n) {
scanf("%d %d", &x, &y);
double add = dist(Tx, Ty, x, y);
all += add * 2;
suff[i] = pre[i] = dist(Cx, Cy, x, y) - add;
::add[i] = dist(Kx, Ky, x, y) - add;
}