SlideShare a Scribd company logo
1 of 44
//ITSACCESCODEIS NOPASSWORD
#include<graphics.h>
#include<dos.h>
#include<stdlib.h>
#include<iostream.h>
#include<conio.h>
#include<string.h>
#include<process.h>
#include<fstream.h>
#include<dir.h>
#include<stdio.h>
#define xy(z) (8*(z-1))
//usingnamespace std;
// GLOBAL Funcions
voidgrap();
voidintro();
voidbox();
voidmainwindow();
voidfaculty();
voidstudent();
voidenterdata();
voidpersonaldetial();
voidadmindetails(char*name);
voidseeyearfaculty();
voidfullaccessfaculty();
voidmodifyfaculty();
voiddeletefaculty();
voidprin();
voidenterdatast();
voidpersonalst();
voidacademic(char*name);
voidseetotalst();
voidfullaccessst();
voidmodifyst();
voiddeletest();
voidencrypt(char*name);
voidcloseprog();
voidquit();
// GLOBAL Variables
intoption,pass,i,access,x,y,status;
char year[10],ch,name[100],temp[200],newfile[100],a[50],mod;
void*p;
size_tarea;
voidmain()
{
grap();
a:clearviewport();
i=0;
rectangle(getmaxx()/2-140,getmaxy()/2-20,getmaxx()/2+135,getmaxy()/2+4);
outtextxy(getmaxx()/2-127,getmaxy()/2-12,"EnterAccesscode:");
gotoxy(43,15);
//PasswordCode
do
{
pass=getch();
if(pass==13) gotob;
a[i]=char(pass);
cout<<"*";
sound(500);delay(100);nosound();
i++;
}while(pass!=13);
b:a[i]=0;
access=strcmp(a,"nopassword");
if(access==0)
{
cout<<"AccessGranted...PressAnyKeyToContinue.......";
intro();
textcolor(BLACK);
textbackground(YELLOW);
mainwindow();
}
else
{
clearviewport();
cout<<"UnautorisedAccess";
cout<<"PressAnyKeyTo Continue.........";
getch();
gotoa;
}
}
// INTRODUCTION SCREEN
voidintro()
{
inta,b,c,d;
setfillstyle(8,1);
for(a=0,b=getmaxx(),c=getmaxx()/2,d=getmaxx()/2;a<getmaxx()/2+3;a+=5,b-=5,
c-=5,d+=5)
{
line(c,xy(8),d,xy(8));line(c,xy(51),d,xy(51));
bar(0,xy(9),a,xy(50));bar(b,xy(9),getmaxx(),xy(50));
sound(10*(a+250));delay(10);
}
nosound();
char pattern[] ={0xfe,0xbc,0xda,0xe4,0xe2,0xc0,0x88,0x00};
setfillpattern(pattern,1);
bar(0,0,640,480);
settextstyle(1,0,5);
setcolor(10);
outtextxy(100,140,"INSTITUTEMANAGEMENT");
outtextxy(250,200,"SYSTEM");
getch();
setcolor(0);
for(i=0;i<=320;i++)
{
rectangle(0+i,0,640-i,480);
delay(5);
}
getch();
closegraph();
}
// DETECTION OF GRAPHICS
voidgrap()
{
intgd= DETECT, gm, errorcode;
initgraph(&gd,&gm,"c:turboc3bgi");
errorcode = graphresult();
if(errorcode !=grOk)
{
printf("Graphicserror:%s",grapherrormsg(errorcode));
exit(1);
}
}
// FUNCTION TO DRAWA BOX
voidbox(void)
{
inti,x,y;
gotoxy(11,2);
for(i=1;i<=58; i++)
{
putch(196);
}
gotoxy(11,6);
for(i=1;i<=58; i++)
{
putch(196);
}
gotoxy(68,2);
putch(191);
y=3;
for(i=1;i<=21; i++)
{
gotoxy(68,y);
y++;
putch(179);
}
gotoxy(68,24);
putch(217);
gotoxy(11,24);
for(i=1;i<=57; i++)
{
putch(196);
}
gotoxy(11,24);
putch(192);
y=3;
for(i=1;i<=21; i++)
{
gotoxy(11,y);
y++;
putch(179);
}
gotoxy(11,2);
putch(218);
}
// Main WindowFunction
voidmainwindow()
{
clrscr();
box();
gotoxy(26,4);cout<<"INSTITUTEMANAGEMENTSYSTEM ";
gotoxy(26,5);cout<<"===========================";
gotoxy(26,8);cout<<"Choose YourOption.......";
gotoxy(26,10);cout<<"1.FacultyInformaton";
gotoxy(26,12);cout<<"2.StudentsInformation";
gotoxy(26,14);cout<<"3.PrintAnyInformation";
gotoxy(26,16);cout<<"Press0To Exit";
gotoxy(26,18);cout<<"Option ----->";
cin>>option;
switch(option)
{
case 1 : faculty();
break;
case 2 : student();
break;
case 3 : prin();
break;
default:closeprog();
break;
};
}
// FUNCTION FORSHOWING A MAIN WINDOWOF FACULTY INFORMATION
voidfaculty()
{
clrscr();
box();
gotoxy(26,4);cout<<"INSTITUTEMANAGEMENTSYSTEM ";
gotoxy(26,5);cout<<"===========================";
gotoxy(26,8);cout<<"Choose YouOption........";
gotoxy(26,10);cout<<"1.AddA New Record";
gotoxy(26,12);cout<<"2.See All Faculty's";
gotoxy(26,14);cout<<"3.Full AccessTo AnyFacultyInformation";
gotoxy(26,16);cout<<"4.ModifyAnyInformation";
gotoxy(26,18);cout<<"5.Delete AnyInformation";
gotoxy(26,20);cout<<"Press0To Exit.......";
gotoxy(26,22);cout<<"Option------>";
cin>>option;
switch(option)
{
case 1 : enterdata();
break;
case 2 : seeyearfaculty();
break;
case 3 : fullaccessfaculty();
break;
case 4 : modifyfaculty();
break;
case 5 : deletefaculty();
break;
default:closeprog();
break;
};
}
// FUNCTION TO INSERTA DATA OF FACULTY
voidenterdata()
{
clrscr();
cout<<"Enter The Year Whichyou Want To AddThe Data ";
cout<<" ============================================= ";
gets(year);
mkdir("data");
chdir("data");
mkdir("faculty");
chdir("faculty");
mkdir(year);
chdir(year);
cout<<"Enter The FacultyName : ";
gets(name);
mkdir(name);
chdir(name);
personaldetial();
chdir("n");
mainwindow();
}
// FUNCTION TO ENTER A PERSONALDETAILSOF A FACULTY
voidpersonaldetial()
{
cout<<"Enter The Personal Details";
cout<<" ========================== ";
cout<<"Enter The The Name Of A Person:";
gets(name);
mkdir(name);
chdir(name);
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ofstreamfout(newfile);
if(!fout)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
fout<<"NAME: "<<name;
cout<<"Enter The Address:";
gets(temp);
fout<<"ADDRESS:"<<temp;
cout<<"Enter ContactNo.: ";
gets(temp);
fout<<"CONTACTNo.:"<<temp;
fout.close();
encrypt(newfile);
admindetails(name);
}
// FUNCTION TO ENTER A ADMINISTRATION DETAILSOFA FACULTY
voidadmindetails(char*name)
{
clrscr();
cout<<"Enter The AdministrationDetials";
cout<<" ================================ ";
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ofstreamfoutt(newfile);
if(!foutt)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
foutt<<"NAME: "<<name;
cout<<"Enter Educational Qualification:";
gets(temp);
foutt<<"EDUCATIONALQUALIFICATIONS:"<<temp;
cout<<"Enter The Name Of The SubjectsTaught";
cout<<" ===================================== ";
foutt<<"SUBJECTSTAUGHT :";
cout<<"Subject(s) TaughttoFirstYear: ";
gets(temp);
foutt<<"FirstYear:"<<temp;
cout<<"Type Of Subject(Theory/Practical) :";
gets(temp);
foutt<<"Type of Subject:"<<temp;
cout<<"Subject(s) TaughttoSecondYear:";
gets(temp);
foutt<<"SecondYear:"<<temp;
cout<<"Type Of Subject(Theory/Practical) :";
gets(temp);
foutt<<"Type of Subject:"<<temp;
cout<<"Subject(s) TaughttoThirdYear: ";
gets(temp);
foutt<<"ThirdYear :"<<temp;
cout<<"Type Of Subject(Theory/Practical) :";
gets(temp);
foutt<<"Type of Subject:"<<temp;
cout<<"Enter Type of Faculty(Permanent/Visiting)";
gets(temp);
foutt<<"TYPE OFFACULTY :"<<temp;
foutt.close();
encrypt(newfile);
}
// FUNCTION TO ENCRYPTA DATA
voidencrypt(char*newfile)
{
ofstreamfout("temp.txt");
ifstreamfin(newfile);
while(fin)
{
fin.get(ch);
if(ch==EOF)break;
mod=~ch;
fout<<mod;
}
remove(newfile);
rename("temp.txt",newfile);
}
// FUNCTION TO SEE THE TOTAL FACULTY OF A YEAR
voidseeyearfaculty()
{
clrscr();
cout<<"Enter The Year Of Which You Want To See The Faculties";
gets(year);
chdir("data");
chdir("faculty");
chdir(year);
cout<<"Enter The FacultyName";
gets(name);
chdir(name);
clrscr();
cout<<" ";
cout<<"These Are The TeachersOf A Stream";
system("dir/b/ad/w");
getch();
chdir("n");
mainwindow();
}
// FUNCTION TO GET FULL ACCESSTO A PARTICULAR DATA
voidfullaccessfaculty()
{
clrscr();
chdir("data");
chdir("faculty");
cout<<"Enter The Year Of The Faculty: ";
gets(year);
chdir(year);
cout<<"Enter The Name Of The Faculty: ";
gets(name);
chdir(name);
cout<<"Enter The Name Of A Person: ";
gets(name);
chdir(name);
cout<<"What You Want To See Personal InformationOrAdminInformation";
cout<<"1. Personal ";
cout<<"2. Adminstration";
cout<<"Option------>";
cin>>option;
clrscr();
cout<<" ";
if(option==1)
{
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
cout<<mod;
}
getch();
fin.close();
}
if(option==2)
{
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
cout<<mod;
}
getch();
fin.close();
}
chdir("n");
mainwindow();
}
// FUNTION TO MODIFY A FACULTY DATA
voidmodifyfaculty()
{
clrscr();
chdir("data");
chdir("faculty");
cout<<"Enter The Year : ";
gets(year);
chdir(year);
cout<<"Enter The Name Of A Faculty: ";
gets(name);
chdir(name);
cout<<"Enter The Name Of A Person: ";
gets(name);
status=rmdir(name);
if(status==0)
{
personaldetial();
}
else
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
chdir("n");
mainwindow();
}
// FUNTION FORDELETING A FACULTY DATA
voiddeletefaculty()
{
clrscr();
chdir("data");
chdir("faculty");
cout<<"Enter The Year : ";
gets(year);
chdir(year);
cout<<"Enter The Name Of A Faculty: ";
gets(name);
chdir(name);
cout<<"Enter The Name Of A Person: ";
gets(name);
cout<<"Are You Sure You Want To Remove It(y/n) :";
cin>>ch;
if(ch=='y')
{
status=rmdir(name);
if(status==0)
{
cout<<"RecordHave BeenRemovedSuccesfully";
cout<<"PressAnyKeyTo ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
else
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
}
else
{
chdir("n");
mainwindow();
}
}
// FUNCTION FORPRINTINGTHE DATA
voidprin()
{
clrscr();
cout<<"Enter The Option";
cout<<"1. Faculty";
cout<<"2. Student";
cout<<"Option------>";
cin>>option;
chdir("data");
if(option==1)
{
chdir("faculty");
cout<<"Enter The Year ";
gets(year);
chdir(year);
cout<<"Enter The Name Of Faculty";
gets(name);
chdir(name);
cout<<"Want Take A PrintDocumentOf Personal OrAdminDetails";
cout<<"1. Personal ";
cout<<"2. Adminstration";
cout<<"Option------>";
cin>>option;
if(option==1)
{
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin;
fin.open(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
ofstreamfout;
fout.open("PRN");
if(!fout)
{
clrscr();
perror("CannotOpen The File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
fout.put(mod);
}
fout.close();
fin.close();
}
if(option==2)
{
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin;
fin.open(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
ofstreamfout;
fout.open("PRN");
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
fout.put(mod);
}
fout.close();
fin.close();
}
}
if(option==2)
{
chdir("student");
cout<<"Enter The Year ";
gets(year);
chdir(year);
cout<<"Enter The Name Of Student";
gets(name);
chdir(name);
cout<<"Want Take A PrintDocumentOf Personal OrAdminDetails";
cout<<"1. Personal ";
cout<<"2. Academic";
cout<<"Option------>";
cin>>option;
if(option==1)
{
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin;
fin.open(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
ofstreamfout;
fout.open("PRN");
if(!fout)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
fout.put(mod);
}
fout.close();
fin.close();
}
if(option==2)
{
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin;
fin.open(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
ofstreamfout;
fout.open("PRN");
if(!fout)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
fout.put(mod);
}
fout.close();
fin.close();
}
}
chdir("n");
mainwindow();
}
// FUNCTION FORSHOWING A MAIN WINDOWOF STUDENT INFORMATION
voidstudent()
{
clrscr();
box();
gotoxy(26,4);cout<<"INSTITUTEMANAGEMENTSYSTEM ";
gotoxy(26,5);cout<<"===========================";
gotoxy(26,8);cout<<"Choose YouOption........";
gotoxy(26,10);cout<<"1.AddA New StudentRecord";
gotoxy(26,12);cout<<"2.See All Students";
gotoxy(26,14);cout<<"3.Full AccessTo AnyStudentInformation";
gotoxy(26,16);cout<<"4.ModifyAnyInformation";
gotoxy(26,18);cout<<"5.Delete AnyInformation";
gotoxy(26,20);cout<<"Press0To Exit.......";
gotoxy(26,22);cout<<"Option------>";
cin>>option;
switch(option)
{
case 1 : enterdatast();
break;
case 2 : seetotalst();
break;
case 3 : fullaccessst();
break;
case 4 : modifyst();
break;
case 5 : deletest();
break;
default:closeprog();
break;
};
}
// FUNCTION TO ENTER A STUDENT DATA
voidenterdatast()
{
clrscr();
cout<<"Enter The Year Whichyou Want To AddThe Data ";
cout<<" =============================================== ";
gets(year);
mkdir("data");
chdir("data");
mkdir("student");
chdir("student");
mkdir(year);
chdir(year);
personalst();
chdir("n");
mainwindow();
}
// FUNCTION TO ENTER A PERSONALDETAILSOF A STUDENT
voidpersonalst()
{
cout<<"Enter The Personal Details";
cout<<" ========================== ";
cout<<"Enter The The Name Of The Student: ";
gets(name);
mkdir(name);
chdir(name);
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ofstreamfout(newfile);
if(!fout)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
fout<<" NAME : "<<name;
cout<<"FathersName : ";
gets(temp);
fout<<"FathersName :"<<temp;
cout<<"Date Of Birth : ";
gets(temp);
fout<<"Date Of Birth : "<<temp;
cout<<"Contact Number: ";
gets(temp);
fout<<"ContactNumber: "<<temp;
cout<<"Address: ";
gets(temp);
fout<<"ADDRESS:"<<temp;
cout<<"Course Name : ";
gets(temp);
fout<<"Course Name :"<<temp;
fout.close();
encrypt(newfile);
academic(name);
}
// FUNCTION TO ENTER A ACADEMICDETAILS OF A STUDENT
voidacademic(char*name)
{
clrscr();
cout<<"Enter The AcademicDetials";
cout<<" ========================== ";
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ofstreamfoutt(newfile);
if(!foutt)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
foutt<<" NAME : "<<name;
cout<<"Type Of Course (Semster/Annual) :";
gets(temp);
foutt<<"Type Of Course (Semester/Annual) :"<<temp;
cout<<"Year Of Admission:";
gets(temp);
foutt<<"YearOf Admission:"<<temp;
cout<<"AdmissionNumber:";
gets(temp);
foutt<<"AdmissionNumber:"<<temp;
cout<<"Percentage InIntermediate:";
gets(temp);
foutt<<"Percentage InIntermediate :"<<temp;
cout<<"Percentage InCollege :";
foutt<<"Percentage InCollege :";
cout<<"First Year: ";
gets(temp);
foutt<<"FirstYear:"<<temp;
cout<<"SecondYear : ";
gets(temp);
foutt<<"SecondYear:"<<temp;
cout<<"Third Year : ";
gets(temp);
foutt<<"ThirdYear :"<<temp;
foutt.close();
encrypt(newfile);
}
// FUNCTION TO SEE A TOTAL STUDENTS OF A PARTICULARYEAR
voidseetotalst()
{
clrscr();
chdir("data");
chdir("student");
cout<<"Enter The Year Of Which You Want To See The Students";
gets(year);
chdir(year);
cout<<"These Are The Students";
system("dir/b/ad/w");
getch();
chdir("n");
mainwindow();
}
// FUNCTION TO SEE ALL DETAILS OF A STUDENT
voidfullaccessst()
{
clrscr();
chdir("data");
chdir("student");
cout<<"Enter The Year Of The Student : ";
gets(year);
chdir(year);
cout<<"Enter The Name Of The Student:";
gets(name);
chdir(name);
cout<<"What You Want To See Personal InformationOrAcademicInformation";
cout<<"1. Personal ";
cout<<"2. Academic";
cout<<"Option------>";
cin>>option;
clrscr();
cout<<" ";
if(option==1)
{
strcpy(newfile,"p");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO Return To Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
cout<<mod;
}
getch();
fin.close();
}
if(option==2)
{
strcpy(newfile,"a");
strcat(newfile,name);
strcat(newfile,".txt");
ifstreamfin(newfile);
if(!fin)
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
while(fin.get(ch)!=0)
{
mod=~ch;
cout<<mod;
}
getch();
fin.close();
}
chdir("n");
mainwindow();
}
// FUNCTION TO MODIFY DETAILS OFA STUDENT
voidmodifyst()
{
chdir("data");
chdir("student");
cout<<"Enter The Year Of You Want To Change The Information:";
gets(year);
chdir(year);
cout<<"Enter The Name Of A Student: ";
gets(name);
status=rmdir(name);
if(status==0)
{
personalst();
}
else
{
clrscr();
perror("CannotOpenThe File ");
cout<<"PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
chdir("n");
mainwindow();
}
// FUNCTION TO DELETE A STUDENT RECORD
voiddeletest()
{
clrscr();
chdir("data");
chdir("student");
cout<<"Enter The Year : ";
gets(year);
chdir(year);
cout<<"Enter The Name Of A Student: ";
gets(name);
cout<<"Are You Sure You Want To Remove It(y/n) :";
cin>>ch;
if(ch=='y')
{
status=rmdir(name);
if(status==0)
{
cout<<"RecordHave BeenRemovedSuccesfully";
cout<<"PressAnyKeyTo ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
else
{
clrscr();
perror("CannotOpenThe File ");
cout<<" PRESS ANYKEY TO ReturnTo Main Menu ";
getch();
chdir("n");
mainwindow();
}
}
else
{
chdir("n");
mainwindow();
}
}
// FUNCTION TO CLOSE A PROGRAM
voidcloseprog()
{
grap();
setcolor(6);
for(i=0;i<=220;i++)
{
rectangle(0+i,0+i,640-i,480-i);
delay(15);
}
for(i=0;i<=220;i++)
{
rectangle(100+i,100,540-i,380);
delay(10);
}
quit();
closegraph();
exit(0);
}
voidquit()
{
inta,b,c;
setcolor(0);
for(a=1,b=getmaxy()-1,c=200;a<=getmaxy()/2;a++,b--,c--)
{
line(1,a,getmaxx()-1,a);
line(1,b,getmaxx()-1,b);
sound(10*(c+200));
delay(1);
}
delay(300);
nosound();
setcolor(4);
settextstyle(7,0,1);
outtextxy(300,350,"Made By : At the endof code Write your name here");
outtextxy(300,375,"Course :");
outtextxy(300,400,"Enrollmentno.:");
delay(5000);
}

More Related Content

What's hot

Алексей Кутумов, Coroutines everywhere
Алексей Кутумов, Coroutines everywhereАлексей Кутумов, Coroutines everywhere
Алексей Кутумов, Coroutines everywhereSergey Platonov
 
The Ring programming language version 1.9 book - Part 103 of 210
The Ring programming language version 1.9 book - Part 103 of 210The Ring programming language version 1.9 book - Part 103 of 210
The Ring programming language version 1.9 book - Part 103 of 210Mahmoud Samir Fayed
 
2² C# 4.0 and .NET 4 Selected Features
2² C# 4.0 and .NET 4 Selected Features2² C# 4.0 and .NET 4 Selected Features
2² C# 4.0 and .NET 4 Selected FeaturesMustafa Isik
 
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅재춘 노
 
Program to implement searching in a text file
Program to implement searching in a text fileProgram to implement searching in a text file
Program to implement searching in a text fileHarryPotter745997
 
Paris js extensions
Paris js extensionsParis js extensions
Paris js extensionserwanl
 
C++ Programming - 9th Study
C++ Programming - 9th StudyC++ Programming - 9th Study
C++ Programming - 9th StudyChris Ohk
 
C++ Programming - 12th Study
C++ Programming - 12th StudyC++ Programming - 12th Study
C++ Programming - 12th StudyChris Ohk
 
TypeScript Introduction
TypeScript IntroductionTypeScript Introduction
TypeScript IntroductionHans Höchtl
 
Gregor modules
Gregor modulesGregor modules
Gregor modulesskyshaw
 
Closures for Java
Closures for JavaClosures for Java
Closures for Javanextlib
 
Batak toba bible gospel of mark
Batak toba bible   gospel of markBatak toba bible   gospel of mark
Batak toba bible gospel of markEternalWord
 
20110424 action scriptを使わないflash勉強会
20110424 action scriptを使わないflash勉強会20110424 action scriptを使わないflash勉強会
20110424 action scriptを使わないflash勉強会Hiroki Mizuno
 
The Ring programming language version 1.5.1 book - Part 35 of 180
The Ring programming language version 1.5.1 book - Part 35 of 180The Ring programming language version 1.5.1 book - Part 35 of 180
The Ring programming language version 1.5.1 book - Part 35 of 180Mahmoud Samir Fayed
 
javascript function & closure
javascript function & closurejavascript function & closure
javascript function & closureHika Maeng
 

What's hot (19)

3
33
3
 
Алексей Кутумов, Coroutines everywhere
Алексей Кутумов, Coroutines everywhereАлексей Кутумов, Coroutines everywhere
Алексей Кутумов, Coroutines everywhere
 
The Ring programming language version 1.9 book - Part 103 of 210
The Ring programming language version 1.9 book - Part 103 of 210The Ring programming language version 1.9 book - Part 103 of 210
The Ring programming language version 1.9 book - Part 103 of 210
 
2² C# 4.0 and .NET 4 Selected Features
2² C# 4.0 and .NET 4 Selected Features2² C# 4.0 and .NET 4 Selected Features
2² C# 4.0 and .NET 4 Selected Features
 
Why Sifu
Why SifuWhy Sifu
Why Sifu
 
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅
드로이드 나이츠 2018: RxJava 적용 팁 및 트러블 슈팅
 
Npc14
Npc14Npc14
Npc14
 
Usp
UspUsp
Usp
 
Program to implement searching in a text file
Program to implement searching in a text fileProgram to implement searching in a text file
Program to implement searching in a text file
 
Paris js extensions
Paris js extensionsParis js extensions
Paris js extensions
 
C++ Programming - 9th Study
C++ Programming - 9th StudyC++ Programming - 9th Study
C++ Programming - 9th Study
 
C++ Programming - 12th Study
C++ Programming - 12th StudyC++ Programming - 12th Study
C++ Programming - 12th Study
 
TypeScript Introduction
TypeScript IntroductionTypeScript Introduction
TypeScript Introduction
 
Gregor modules
Gregor modulesGregor modules
Gregor modules
 
Closures for Java
Closures for JavaClosures for Java
Closures for Java
 
Batak toba bible gospel of mark
Batak toba bible   gospel of markBatak toba bible   gospel of mark
Batak toba bible gospel of mark
 
20110424 action scriptを使わないflash勉強会
20110424 action scriptを使わないflash勉強会20110424 action scriptを使わないflash勉強会
20110424 action scriptを使わないflash勉強会
 
The Ring programming language version 1.5.1 book - Part 35 of 180
The Ring programming language version 1.5.1 book - Part 35 of 180The Ring programming language version 1.5.1 book - Part 35 of 180
The Ring programming language version 1.5.1 book - Part 35 of 180
 
javascript function & closure
javascript function & closurejavascript function & closure
javascript function & closure
 

Similar to Institute management

c++ project on restaurant billing
c++ project on restaurant billing c++ project on restaurant billing
c++ project on restaurant billing Swakriti Rathore
 
R57shell
R57shellR57shell
R57shellady36
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservationSwarup Kumar Boro
 
Railway reservation
Railway reservationRailway reservation
Railway reservationSwarup Boro
 
Project hotel on hotel management fo
Project  hotel on hotel management foProject  hotel on hotel management fo
Project hotel on hotel management foSunny Singhania
 
Computer science project work
Computer science project workComputer science project work
Computer science project workrahulchamp2345
 
โปรแกรมย่อยและฟังชันก์มาตรฐาน
โปรแกรมย่อยและฟังชันก์มาตรฐานโปรแกรมย่อยและฟังชันก์มาตรฐาน
โปรแกรมย่อยและฟังชันก์มาตรฐานknang
 
RAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAMRAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAMKrishna Raj
 
Sample file processing
Sample file processingSample file processing
Sample file processingIssay Meii
 
Ast transformations
Ast transformationsAst transformations
Ast transformationsHamletDRC
 
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdfAdrianEBJKingr
 
How to Start Test-Driven Development in Legacy Code
How to Start Test-Driven Development in Legacy CodeHow to Start Test-Driven Development in Legacy Code
How to Start Test-Driven Development in Legacy CodeDaniel Wellman
 
JavaScript - i och utanför webbläsaren (2010-03-03)
JavaScript - i och utanför webbläsaren (2010-03-03)JavaScript - i och utanför webbläsaren (2010-03-03)
JavaScript - i och utanför webbläsaren (2010-03-03)Anders Jönsson
 

Similar to Institute management (20)

c++ project on restaurant billing
c++ project on restaurant billing c++ project on restaurant billing
c++ project on restaurant billing
 
Sbaw091006
Sbaw091006Sbaw091006
Sbaw091006
 
C++ programs
C++ programsC++ programs
C++ programs
 
R57shell
R57shellR57shell
R57shell
 
c++ program for Railway reservation
c++ program for Railway reservationc++ program for Railway reservation
c++ program for Railway reservation
 
Railway reservation
Railway reservationRailway reservation
Railway reservation
 
Project hotel on hotel management fo
Project  hotel on hotel management foProject  hotel on hotel management fo
Project hotel on hotel management fo
 
Computer science project work
Computer science project workComputer science project work
Computer science project work
 
Data structures
Data structuresData structures
Data structures
 
โปรแกรมย่อยและฟังชันก์มาตรฐาน
โปรแกรมย่อยและฟังชันก์มาตรฐานโปรแกรมย่อยและฟังชันก์มาตรฐาน
โปรแกรมย่อยและฟังชันก์มาตรฐาน
 
C program
C programC program
C program
 
Tu1
Tu1Tu1
Tu1
 
RAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAMRAILWAY RESERWATION PROJECT PROGRAM
RAILWAY RESERWATION PROJECT PROGRAM
 
Sample file processing
Sample file processingSample file processing
Sample file processing
 
Anti patterns
Anti patternsAnti patterns
Anti patterns
 
Ast transformations
Ast transformationsAst transformations
Ast transformations
 
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf
-- This is the shell-c Test- --shell -test sub #include -ctype-h- -- C.pdf
 
How to Start Test-Driven Development in Legacy Code
How to Start Test-Driven Development in Legacy CodeHow to Start Test-Driven Development in Legacy Code
How to Start Test-Driven Development in Legacy Code
 
C99[2]
C99[2]C99[2]
C99[2]
 
JavaScript - i och utanför webbläsaren (2010-03-03)
JavaScript - i och utanför webbläsaren (2010-03-03)JavaScript - i och utanför webbläsaren (2010-03-03)
JavaScript - i och utanför webbläsaren (2010-03-03)
 

More from varun arora

Computer networks and it's applications
Computer networks and it's applicationsComputer networks and it's applications
Computer networks and it's applicationsvarun arora
 
Dna digital data storage
Dna digital data storageDna digital data storage
Dna digital data storagevarun arora
 
Advance Java Practical file
Advance Java Practical fileAdvance Java Practical file
Advance Java Practical filevarun arora
 
Dot Net Project Mini Game
Dot Net Project Mini GameDot Net Project Mini Game
Dot Net Project Mini Gamevarun arora
 
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycleBacktracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cyclevarun arora
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++varun arora
 
Computer graphics File for Engineers
Computer graphics File for EngineersComputer graphics File for Engineers
Computer graphics File for Engineersvarun arora
 
Project fast food automaton
Project fast food automatonProject fast food automaton
Project fast food automatonvarun arora
 
Macromedia Flash Player Practical file
Macromedia Flash Player Practical file Macromedia Flash Player Practical file
Macromedia Flash Player Practical file varun arora
 
Mini project in java swing
Mini project in java swingMini project in java swing
Mini project in java swingvarun arora
 

More from varun arora (10)

Computer networks and it's applications
Computer networks and it's applicationsComputer networks and it's applications
Computer networks and it's applications
 
Dna digital data storage
Dna digital data storageDna digital data storage
Dna digital data storage
 
Advance Java Practical file
Advance Java Practical fileAdvance Java Practical file
Advance Java Practical file
 
Dot Net Project Mini Game
Dot Net Project Mini GameDot Net Project Mini Game
Dot Net Project Mini Game
 
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycleBacktracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
Backtracking-N Queens Problem-Graph Coloring-Hamiltonian cycle
 
Billing in a supermarket c++
Billing in a supermarket c++Billing in a supermarket c++
Billing in a supermarket c++
 
Computer graphics File for Engineers
Computer graphics File for EngineersComputer graphics File for Engineers
Computer graphics File for Engineers
 
Project fast food automaton
Project fast food automatonProject fast food automaton
Project fast food automaton
 
Macromedia Flash Player Practical file
Macromedia Flash Player Practical file Macromedia Flash Player Practical file
Macromedia Flash Player Practical file
 
Mini project in java swing
Mini project in java swingMini project in java swing
Mini project in java swing
 

Recently uploaded

CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfAsst.prof M.Gokilavani
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx959SahilShah
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVRajaP95
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerAnamika Sarkar
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.eptoze12
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxwendy cai
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfAsst.prof M.Gokilavani
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionDr.Costas Sachpazis
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineeringmalavadedarshan25
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxJoão Esperancinha
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfme23b1001
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxk795866
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AIabhishek36461
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .Satyam Kumar
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHC Sai Kiran
 
Effects of rheological properties on mixing
Effects of rheological properties on mixingEffects of rheological properties on mixing
Effects of rheological properties on mixingviprabot1
 

Recently uploaded (20)

Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptxExploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
Exploring_Network_Security_with_JA3_by_Rakesh Seal.pptx
 
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdfCCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
CCS355 Neural Network & Deep Learning Unit II Notes with Question bank .pdf
 
Application of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptxApplication of Residue Theorem to evaluate real integrations.pptx
Application of Residue Theorem to evaluate real integrations.pptx
 
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IVHARMONY IN THE NATURE AND EXISTENCE - Unit-IV
HARMONY IN THE NATURE AND EXISTENCE - Unit-IV
 
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube ExchangerStudy on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
Study on Air-Water & Water-Water Heat Exchange in a Finned Tube Exchanger
 
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
VICTOR MAESTRE RAMIREZ - Planetary Defender on NASA's Double Asteroid Redirec...
 
Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.Oxy acetylene welding presentation note.
Oxy acetylene welding presentation note.
 
What are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptxWhat are the advantages and disadvantages of membrane structures.pptx
What are the advantages and disadvantages of membrane structures.pptx
 
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdfCCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
CCS355 Neural Network & Deep Learning UNIT III notes and Question bank .pdf
 
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective IntroductionSachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
Sachpazis Costas: Geotechnical Engineering: A student's Perspective Introduction
 
Internship report on mechanical engineering
Internship report on mechanical engineeringInternship report on mechanical engineering
Internship report on mechanical engineering
 
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptxDecoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
Decoding Kotlin - Your guide to solving the mysterious in Kotlin.pptx
 
Design and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdfDesign and analysis of solar grass cutter.pdf
Design and analysis of solar grass cutter.pdf
 
Electronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdfElectronically Controlled suspensions system .pdf
Electronically Controlled suspensions system .pdf
 
Introduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptxIntroduction-To-Agricultural-Surveillance-Rover.pptx
Introduction-To-Agricultural-Surveillance-Rover.pptx
 
Past, Present and Future of Generative AI
Past, Present and Future of Generative AIPast, Present and Future of Generative AI
Past, Present and Future of Generative AI
 
Churning of Butter, Factors affecting .
Churning of Butter, Factors affecting  .Churning of Butter, Factors affecting  .
Churning of Butter, Factors affecting .
 
Introduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECHIntroduction to Machine Learning Unit-3 for II MECH
Introduction to Machine Learning Unit-3 for II MECH
 
Effects of rheological properties on mixing
Effects of rheological properties on mixingEffects of rheological properties on mixing
Effects of rheological properties on mixing
 
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
🔝9953056974🔝!!-YOUNG call girls in Rajendra Nagar Escort rvice Shot 2000 nigh...
 

Institute management