#include "typer.h" main() { textcolor(LIGHTGRAY); printf("a"); clrscr(); printf("Hit a key to view typer() in action"); getch(); clrscr(); typer("\n\n\t\tWake up Neo\n\n\tThe Matrix has you !\n\n\t\ Knock Knock Neo\n\n\tFollow the white rabbit" ,LIGHTGREEN,GREEN,150,1,0); /* clr(0); fflush(stdin); typer("The Matrix has you !",LIGHTGREEN,GREEN,150,20,5); clr(0); fflush(stdin); typer("Knock Knock Neo",LIGHTGREEN,GREEN,150,20,7); fflush(stdin); getch(); clr(1); fflush(stdin); typer("Follow the white rabbit",LIGHTGREEN,GREEN,150,20,5); getch(); */ textcolor(LIGHTGRAY); printf("a"); clrscr(); printf("Hit a key to view loop_typer() in action"); getch(); clrscr(); loop_typer("Rajesh's C - Vault (http://www.rajeshgoli.com)",LIGHTGREEN,GREEN,150,20,5,0); }