drawing geometric objects

Im tryin to draw a circle on clicking and dragging a mouse. Could someone suggest how could i draw the circle such that its center is the point that i clicked on and the radius is the distance till which the mouse is dragged from that point ?

First, a circle is described by (rcos(theta)+a, rsin(theta)+b), where (a,b) is the center of the circle and r is the radius. In your case, (a,b) is the location of mouse down, and the radius is the distance between the mouse down and the current mouse position. Then, to draw the circle you can use a for loop, and increment theta from 0 to 2pi.

For instance:

void drawCircle(float mouseDownX, float mouseDownY, float newX, float newY)
{
    float radius = sqrt((newX-mouseDownX)*(newX-mouseDownX) + (newY-mouseDownY)*(newY-mouseDownY);
    int subdivisions = 36;
    glBegin(GL_LINES);
    for(int i=0; i<=subdivisions; i++) {
        float theta = ((float)i)*2.0*M_PI/(float)subdivisions;
        glVertex2f(radius*cos(theta)+mouseDownX, radius*sin(theta)+mouseDownY);
    }
    glEnd();
}

And to have a GL projection so that mouse pixel coordinates map to GL coordinates, use :

const XSize = 640, YSize = 480; // replace these by your glViewport values.
glMatrixMode (GL_PROJECTION);
glLoadIdentity ();
glOrtho (0, XSize, YSize, 0, 0, 1);
glMatrixMode (GL_MODELVIEW);