cursor

2018-11-11 16:16 更新

 原型:extern void cursor(int mode);
             
 用法:#include <system.h>
 
 功能:设定光标形态
 
 说明:mode值含义如下:
       0x00:块状光标(默认)
       0x80:下划线光标
       其它值无意义
   
 举例:


     // cursor.c
     
     #include <system.h>
     main()
     {
       int c;
       clrscr();
       cursor(0x00);
       printf("press key to change cursor");
       
       getchar();
       cursor(0x80);
       
       getchar();
       return 0;
     }


以上内容是否对您有帮助:
在线笔记
App下载
App下载

扫描二维码

下载编程狮App

公众号
微信公众号

编程狮公众号