Not too hard:
Code:
for(int i = 0; true; i = (i + 1) % 360)
{
   this->X = centerX + radius * Cos(i);
   this->Y = centerY + radius * Sin(i);
   Waitframe();
}