Project Intro Page

project intro page

#include<fstream.h>
#include<conio.h>
#include<stdio.h>
#include<string.h>
#include<stdlib.h>
#include<process.h>
#include<ctype.h>
#include<dos.h>
#include<graphics.h>

void wel()
{
int gd=DETECT,gm;
initgraph(&gd,&gm,”c:\\turboc3″);
cleardevice();
setcolor(4);
settextstyle(1,0,10);
outtextxy(10,10,”Welcome”);
setcolor(5);
settextstyle(1,0,5);
outtextxy(180,180,”To”);
setcolor(2);
settextstyle(1,0,9);
outtextxy(1,280,”Project On”);
getch();
cleardevice();
setcolor(4);
settextstyle(1,0,10);
outtextxy(50,1,”Blood”);
setcolor(4);
settextstyle(1,0,10);
outtextxy(1,100,”Banking”);
setcolor(14);
settextstyle(1,0,4);
outtextxy(1,240,”Dev. BY”);
setcolor(14);
settextstyle(1,0,6);
outtextxy(1,270,”ABC”);
settextstyle(1,0,4);
setcolor(9);
outtextxy(100,330,”and”);
settextstyle(1,0,6);
setcolor(14);
outtextxy(1,360,”XYZ”);

getch();
closegraph();
}

 

void main()
{
wel();
getch();
}