#include
"iostream.h"
#include
"dos.h"
main()
{
//PROGRAM
AIM : to position the cursor on the screen,
// currently not
working
union REGS inregs,outregs;
inregs.h.ah=2; //service no.
inregs.h.dh=10; //row no.
inregs.h.dl=10; //col no.
int86(16,&inregs,&outregs);
return 0;
}