sector


/*
Write a program in C for sector
*/
 
#include<graphics.h>
#include<conio.h>

main()
{
int gd = DETECT, gm;

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

sector(100, 100, 0, 135, 25, 35);

getch();
 

closegraph();
 

return 0;
}

Post a Comment

0 Comments