outtext


/*
Write a program in C for outtext
*/

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

main()
{
int gd = DETECT, gm;

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

outtext("To display text at a particular position on the screen use outtextxy");

getch();
 

closegraph();
 

return 0;
}

Post a Comment

0 Comments