书上的代码,有没有人能帮小弟我测试一下

书上的代码,有没有人能帮我测试一下?
[code=C/C++][/code]
// typical.cpp : Defines the entry point for the console application.
//

#include "stdafx.h"


int _tmain(int argc, _TCHAR* argv[])
{
return 0;
}



/*This is s typical C program */
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<dos.h>
void ShowFace(int x,int y)
{
gotoxy(x,y);
textcolor(RED);
cprintf("\01");
delay(2000);
gotoxy(x,y);
cprintf(" ");

}

vod FlashLetters(int x,int y)
{
int i,j,k ;
int color ;

int x ;
for(k=0;k<26;k++)
{
color = random(14)+1;
for(j=0;j<4;j++)
{
gotoxy(i,y);
textcolor(color);
cprintf("%c",'A'+k);
delay(200);
gotoxy(i,y);
textcolor(color+1);
cprintf("%c",'A'+k);
delay(200);
if(kbhit)
{
gotoxy(x,y);
clreol();
return;

}
}
i++;
}
gotoxy(x,y);
clreol();
}

void ShowMenu()
{
char *str[4]={
"You can select:";
"A:Show a colorful face!";
"B:Flash 26 Letters.";
"C:Exit.";

};
int i;

for(i=0;i<4;i++)
printf("%s\n",str[n]);

}


void main()
{
char ch;
clrscr();
ShowMenu();
for(;;)
{
ch=getch();
switch(ch)
{
case 'A':
case 'a':
ShowFace(1,10);
break;
case 'B':
case 'b':
FlashLetters(1,10);
break;
case 'C':
case 'c':
return ;
default:
break;
}
}
}

------解决方案--------------------
你程序要完成什么功能,请你先把第一个t_main函数去掉哦。