The document contains code snippets to draw basic shapes in C using graphics.h: a circle with center (300,250) and radius 80, a line from (500,150) to (250,150), and a rectangle with opposite corners at (150,150) and (70,70) by drawing each of its four sides individually. Each code sample initializes the graphics mode, draws the shape, waits for input, and closes graphics before returning.