Metropoli BBS
VIEWER: where.c MODE: TEXT (ASCII)
#include <qlib.h>
#include <conio.h>
#include <stdio.h>

void main(void) {
  word x,y;

  clrscr();

  gotoxy(10,10);
  x=wherex();
  y=wherex();
  printf("X=%d Y=%d",x,y);

  gotoxy(5,5);
  x=wherex();
  y=wherex();
  printf("X=%d Y=%d",x,y);

  gotoxy(1,20);
}

[ RETURN TO DIRECTORY ]