关于AscII码输出的问题
一段程序,大家看看,加粗的那一句输出结果会是什么,为什么会产生这样的结果?turbo c 2.0环境。#include<stdio.h>
#include<conio.h>
int main()
{
int i,j;
int w = 8,h = 10,x = 30,y = 10;
textbackground(BLACK);
clrscr();
textbackground(WHITE);
textcolor(RED);
system("pause");
gotoxy(x,y);
putch(0xc9);
。。。。。。。。。。。
}