TEXTINFO.C
资源名称:C.rar [点击查看]
上传用户:qq5388545
上传日期:2022-07-04
资源大小:29849k
文件大小:0k
源码类别:

界面编程

开发平台:

C/C++

  1. #include <conio.h>
  2. void main(void)
  3.  {
  4.    struct text_info text;
  5.    gettextinfo(&text);
  6.    cprintf("Screen coordinates %d,%d to %d,%drn",
  7.      text.wintop, text.winleft, text.winbottom, text.winright);
  8.    cprintf("Text attribute %d Normal attribute %drn",
  9.      text.attribute, text.normattr);
  10.    cprintf("Screen height %d width %drn", text.screenheight,
  11.      text.screenwidth);
  12.    cprintf("Cursor position was row %d column %drn",
  13.      text.cury, text.curx);
  14.  }