c语言的问题求大神的指导

![#include"stdio.h"
#include"conio.h"
main()
{
clrscr();
gotoxy(10,1);
cprintf( "甜密密");
highvideo();/*高亮度显示*/
cprintf( "\r\n 你笑得甜密密, ");
lowvideo();/*低亮度显示*/
cprintf( "\r\n 好象花儿开在春风里, ");
normvideo();/*普通亮度显示*/
gotoxy(10,4);cprintf( "开在春风里 ");
cprintf( "\r\n 在哪里,在哪里见过你? ");
printf( "\r\n 你的笑容这样熟悉。 ");
gotoxy(10,20);printf( "任意键删去光标后的内容 ");
gotoxy(18,3);
getch();
gotoxy(18,3);

clreol(); /*删去光标后字符*/

gotoxy(10,20);printf( "任意键删去本行的内容     ");      
gotoxy(18,3);           
getch();       
delline();                                                           /*删去本行*/      
gotoxy(10,20);printf( "任意键在本行插一空行     ");
gotoxy(18,3);
getch();
insline();                                                           /*插入一空行*/      
gotoxy(1,7);  }  图片说明](https://img-ask.csdn.net/upload/201507/20/1437377802_253956.png)为什么

这是turbo c特有的bgi库,你应该用boland c++或者turbo c去运行

你在什么编译器下运行的?要是VC的话,使用tc的图形库是需要安装EasyX的。详情可以看EasyX的官网:http://www.easyx.cn