帮你百度了一下,如果你用的是TC,下面的程序可以实现
#include <stdio.h>
#include <conio.h>
void main()
{
clrscr();
window(1, 1, 80, 25);//此句可省略
textbackground(7);
textcolor(0);
gotoxy(30, 12);
cprintf("Hello World");
getch();
}
参考资料:http://zhidao.baidu.com/question/34891985.html
如果是用的VC,那我就没办法了
[[it] 本帖最后由 永夜的极光 于 2008-10-17 16:12 编辑 [/it]]