You are here

pieslice function in c

#include <graphics.h>
#include <conio.h>

main()
{
   int gd = DETECT, gm;

   initgraph(&gd, &gm, "C:\\TC\\BGI");

   pieslice(200, 200, 0, 135, 100);

   getch();
   closegraph();
   return 0;
}