My friend gave me a bit of code for my SDL program, all I know that it makes a random color but I have no idea how it works , here is the code
int unsigned temp = 10101;//seed
for(int y = 0;y < times;y++){
temp = temp*(y+y+1);
temp = (temp^(0xffffff))>>2;
//printf("%x\n",temp);
SDL_FillRect(sprite[y],NULL,temp);
SDL_BlitSurface(sprite[y],&paste[y],rScreen(),NULL);
}
My question is , How does this code work and how does it make a random color