Saturday, April 6, 2013

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;
}
Output of program:
pieslice

No comments:

Post a Comment