Hi!, I'm a first-year student at the university. When i am using Tubo C++ , i encountered a problem with inputting Date to graphics window. The code below here is the way to input date in text window, but i dont know how to input this into the gaphics window, because we have to use "outtextxy" in th graphics window not "gotoxy".
#include<graphics.h>
struct date d;
getdate(&d);
gotoxy(65,1);
cprintf("%d/", d.da_day);
Thanks in advance!!