wherex

wherex

wherex,是一個計算機函數。

函數格式


函數名: wherex
功 能: 返回窗口內水平游標位置
用 法: int wherex(void);

程序示例


#include
int main(void)
{
clrscr();
gotoxy(10,10);
cprintf("Curren tlocation is X: %d Y: %d\r\n", wherex(), wherey());
getch();
return 0;
}