textmode()函数是哪个头文件的?

Mingci_why 2009-11-21 01:42:41
RT!
...全文
139 4 打赏 收藏 转发到动态 举报
写回复
用AI写文章
4 条回复
切换为时间正序
请发表友善的回复…
发表回复
Mingci_why 2009-11-21
  • 打赏
  • 举报
回复
我百度搜不到,就是没想到GOOGLE
东大坡居士 2009-11-21
  • 打赏
  • 举报
回复
就是就是,搜一下就知道了吗
la_feng 2009-11-21
  • 打赏
  • 举报
回复
会Google的这么少
textmode



原型:extern void textmode(int mode);

用法:#include <system.h>

功能:设定屏幕模式

说明:请参见UpdateLCD中关于mode的含义。
textmode会影响屏幕上已有内容的显示。

举例:

// textmode.c

#include <system.h>

main()
{
int c;

clrscr();
textmode(0x00);
printf("Hello, world!\n");
getchar();

textmode(0xE0);
printf("Hi, this is the next mode\n");

getchar();
return 0;
}

相关函数:UpdateLCD



小坏猪猪 2009-11-21
  • 打赏
  • 举报
回复
sting.h

69,371

社区成员

发帖
与我相关
我的任务
社区描述
C语言相关问题讨论
社区管理员
  • C语言
  • 花神庙码农
  • 架构师李肯
加入社区
  • 近7日
  • 近30日
  • 至今
社区公告
暂无公告

试试用AI创作助手写篇文章吧