Question

The order of print something in turbo c++ in graphic mode is :

outtextxy(xmid,ymid,"...")

but I wanna print the value of a variable.what should I use?

Était-ce utile?

La solution

Something like this

char msg[128];
sprintf(msg, "variable=%d", variable);
outtextxy(xmin, ymid, msg);
Licencié sous: CC-BY-SA avec attribution
Non affilié à StackOverflow
scroll top