Close Back

#include<stdio.h>
#include<conio.h>
#include<dos.h>
#include<math.h>
#include<string.h>
#include<ctype.h>
#include<stdlib.h>
#include<rajesh.h>

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;
}