/*Arrow*/
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
int main()
{
int gm,gd=DETECT;
initgraph(&gd,&gm,"C:\\turboc3\\bgi");
outtextxy(300,60,"Arrow");
setcolor(YELLOW);
line(300,80,340,80);
line(300,100,340,100);
line(300,80,300,100);
line(340,80,340,70);
line(340,100,340,110);
line(340,70,360,90);
line(340,110,360,90);
getch();
closegraph();
return 0;
}
#include<stdio.h>
#include<conio.h>
#include<graphics.h>
int main()
{
int gm,gd=DETECT;
initgraph(&gd,&gm,"C:\\turboc3\\bgi");
outtextxy(300,60,"Arrow");
setcolor(YELLOW);
line(300,80,340,80);
line(300,100,340,100);
line(300,80,300,100);
line(340,80,340,70);
line(340,100,340,110);
line(340,70,360,90);
line(340,110,360,90);
getch();
closegraph();
return 0;
}