From reading the other answers and your comments ("the problem is that I don't want to draw a texture mapped quad :| All needs to be done with coding, no images needs to be used" above), it looks like you want to draw a triangle from polygons, not a texture? You example image looks like a texture, but the following describes a polygonal star with any number of points - a normal 5-pointed star or a Star of David, for example.
Start with code that draws a single triangle. If you haven't got that far in your OpenGL code yet, read lessons 1 and 2 from NeHe. Once you get to the stage presented here, you should be able to draw a triangle onscreen.
Any star is a pretty simple shape and the best way to draw it is probably as a collection of triangles. What you should do is figure out the coordinates of each vertex of the star (that is, the points on the outside that make it up) and then add triangles in to draw those inside your glBegin(GL_TRIANGLES) section of code. You might want to add extra vertices in the middle of the star to make making triangles simpler. This process of subdividing a shape into triangles is called "triangulation" (usually done for a full 3D surface, not just a simple shape like this).
You can do this either by calculating it mathematically or simply drawing one on paper and figuring out the coordinates by hand. The latter might be the easiest approach to figure out how triangulation works, because you can also draw the triangles that make up the star. To calculate the points mathematically, you need to figure out how many points you want, and double that for the total number of vertices around the edge of the star. Use basic trig math to calculate the points equally spaced around a circle, and extend them further away from the center if they are a point of the star. (Ie, normalize each point, multiply it by the radius of the star's inner or outer radiuses.)
You can always use a code search to find how other people have achieved the same thing.
This sounds a little like a homework question to me, so I've tried to give an answer describing how to do it rather than an actual solution with code. I hope it's useful and the pointers / links should help! Good luck.