I came across this piece of code. Can anyone explain what the operator does? I tried searching SO,internet but couldn't find info on it.
....
int add=0;
for(int i=0; i<l; i++)
add >?= doit(x+1, y+1, n);
....
I found the code in one of user solutions on TopCoder.