最佳答案:
wherey函数是计算机函数。
详情介绍
wherey函数是计算机函数。

- 中文名
- wherey函数
- 函数名
- wherey
- 功 能
- 返回窗口内垂直光标位置
- 用 法
- int wherey(void);
wherey函数用 法
int wherey(void);
wherey函数程序例
#include <conio.h>

int main(void)
{
clrscr();

gotoxy(10,10);
cprintf("Current location is X: %d Y: %drn", wherex(), wherey());
getch();
return 0;
}


