⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 gchuoitt.c

📁 Many C samples. It is a good sample for students to learn C language.
💻 C
字号:
/* Ghi chuoi co thuoc tinh */
#include <stdio.h>
#include <dos.h>

char far *video = MK_FP(0xB800, 0);

void writestring(int x, int y, char *s, char attribute)
{
  unsigned offset, i=0;

  offset = y*160 + x*2;
  while (s[i] != 0)
  {
    video[offset] = s[i];
    video[offset+1] = attribute;
    offset += 2;
    i++;
  }
}

void main()
{
   char string[] = "Hello World!";
   writestring(10, 10, string, 0x14);
   getch();
}

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -