Project Loading page
//project loading page
#include<stdio.h>
#include<conio.h>
#include<stdlib.h>
#include<dos.h>
#include<string.h>
void load()
{
int i;
clrscr();
gotoxy(20,14);
printf(“V A L I D U S E R”);
gotoxy(20,16);
printf(“L O A D I N G P R O J E C T “);
textcolor(15);
for(i=10;i<=60;i++)
{
gotoxy(i,22);
cprintf(“±”);//alt +177
gotoxy(i,23);
cprintf(“±”);//alt +177
gotoxy(20,25);
printf(“Project %d %% Loaded”,(i-10)*2);
delay(500);
}
}
void main()
{
load();
getch();
}