Saturday, 24 December 2011

outtextxy

#include<graphics.h>
#include<conio.h>
 
main()
{
int gd = DETECT, gm;
 
initgraph(&gd,&gm,"C:\\TC\\BGI");
 
outtextxy(100, 100, "Outtextxy function");
 
getch();
closegraph();
return 0;
}

No comments:

Post a Comment