void Locate(int y, int x);
光标定位
把字符显示的光标定位在 y 行 x 列(x, y 均从 0 开始计算)
void main() { SetScreen(0); Locate(2, 8); printf("Good!"); getchar(); }