Q:

outtext function using graphics.h

0

outtext function using graphics.h

outtext function displays text at current position.

Declaration: void outtext(char *string);

All Answers

need an explanation for this answer? contact us directly to get an explanation for this answer

 

#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;
}

need an explanation for this answer? contact us directly to get an explanation for this answer

total answers (1)

Similar questions


need a help?


find thousands of online teachers now