I need a function that let me find n random points. These points must have the same distance from a given point. Can you help me?
void createCpoints()
{
    int xcenter=3;
    int ycenter=3;
    int radius=3;
    double x[N];
    double y[N];
    //...
}