#include #include #include #include #include #include #include #include void textcolor(); void textbackground(); void gotoxy(); main(); main() { int x,y,now; char name[30]; clrscr(); printf("\nLoading...."); textcolor(RED); textbackground(BLUE); cprintf("\n\n\n\n\n\n\n\n\n\n\n\nSimply \"Marvelous\""); window(1,1,40,25); x = wherex(); y = wherey(); now = x - 10; gotoxy(now,y+1); cprintf("\n\n\3\3\3\3\3\3\3\3\3\3"); cprintf("\n\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\b\3 \3"); cprintf("\n\b\b\b\b\b\b\b\b\b\b\b\b\3\3\3\3\3\3\3\3\3\3"); x = wherex(); y = wherey(); gotoxy(x-10,y-2); percentage(100); cprintf("\n\n\4\4\4"); cprintf("\n\b\b\b\4 \4"); cprintf("\n\b\b\b\4\4\4"); x = wherex(); y = wherey(); now = x - 1; gotoxy(now,y -1); rotate(150); gotoxy(x + 2,y - 1); cprintf("\nEnter you name:"); scanf("%s",name); cprintf("\nYour first name may be %s",name); getch(); return; }