wherey函数是计算机函数。
int wherey(void);
#include <conio.h>
int main(void)
{
clrscr();
gotoxy(10,10);
cprintf("Current location is X: %d Y: %drn", wherex(), wherey());
getch();
return 0;
}