Draw object at particular position

How do we draw an object,for e.g. the Utah Teapot or a sphere at a particular position on a 3D scene?

Most usual way to do it: you apply a translation matrix prior to rendering the object. You should probably have a look at glTranslate function.

Ok. I tried using it previously and I had some problems. Now it’s working.