SlideShare a Scribd company logo
Project Report
C++ Programming
Information Technology
Topic
Name List Generator
Submitted By
Deepika Mittal
BCA IInd Year
Dezyne Eโ€™cole College
www.dezyneecole.com
R
Project Report
On
C++ Programming
At
Dezyne Eโ€™cole College
Ajmer
Submitted to
Dezyne Eโ€™cole College
Towards The
Partial Fulfillment on
Bachelorโ€™s of Computer Application
By
Deepika Mittal
Dezyne Eโ€™cole College
106/10, Civil line, Ajmer
Tel:โ€“0145-2624679
www.dezyneecole.com
2016-17
R
ACKNOWLEDGMENT
I DEEPIKA MITTAL, STUDENT OF DEZYNE Eโ€™COLE COLLEGE, AN
EXTERNALLY GRATEFUL TO EACH AND EVERY INDIVIDUAL WHO HAS
CONTRIBUTED IN SUCCESSFUL COMPLETION OF MY PROJECT. I EXPRESS
MY GRATITUDE TOWARDS DEZYNE Eโ€™COLE COLLEGE FOR THEIR
GUIDANCE AND CONSTANT SUPERVISION AS WELL AS FOR PROVIDING
THE NECESSARY INFORMATION AND SUPPORT REGARDING THE
COMPLETION OF PROJECT.
THANK YOU
SYNOPSIS
THIS PROJECT IS A MINER PROJECT MODE, BASED ON THE PRATICAL
CONCEPTS OF C++. THIS PROJECT HAS MADE OUR BASIC PRATICAL
CONCEPTS ON C++ STRONG.
Name List Generator
Admin Panel2
Add Student
View Student
Search Student
Delete Student
View Student
Modified Student
View Student
Exit
Source Code
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
#include<stdio.h>
#include<stdlib.h>
#include<fstream.h>
#include<string.h>
#include<dos.h>
class adm
{
public:
char un[25],up[25];
void log()
{
strcpy(un,"Hello");
strcpy(up,"D'cole");
}
};
adm rt;
void pass()
{
rt.log();
b:
char una[25],upa[25];
gotoxy(20,10);
cout<<"Enter User Name :- ";
cin>>una;
gotoxy(20,11);
cout<<"Enter Password :- ";
char ch;
int j;
j=0;
while(1)
{
ch=getch();
if(ch==8)
{
cprintf("b b");
j--;
}
else if(ch==13)
{
break;
}
else
{
upa[j]=ch;
cout<<"*";
j++;
}
}
upa[j]='0';
if(strcmp(una,rt.un)==0 && strcmp(upa,rt.up)==0)
{
goto en;
}
else
{
clrscr();
goto b;
}
en:
}
class Pro1
{
public:
char id[25],n[25],fn[25],cl[25],ci[25];
};
fstream fp,fp1,f;
Pro1 in,in1,a;
class Project
{
public:
void get()
{
/*count();
id=n; */
cout<<setw(5)<<"id";
cout<<setw(15)<<"Name";
cout<<setw(20)<<"Father Name";
cout<<setw(15)<<"Class";
cout<<setw(16)<<"Cityn";
gotoxy(4,2);
cin>>in.id;
gotoxy(15,2);
gets(in.n);
gotoxy(30,2);
gets(in.fn);
gotoxy(51,2);
gets(in.cl);
gotoxy(67,2);
gets(in.ci);
}
void store()
{
fp.open("Proj.txt",ios::out | ios::app);
fp.write((char *) &in, sizeof(in));
cout<<"nData Stored.";
fp.close();
}
void show()
{
fp.open("Proj.txt",ios::in);
for(int i=0; i<40; i++)
{
cout<<"- ";
}
cout<<endl;
cout<<setw(5)<<"id";
cout<<setw(18)<<"Name";
cout<<setw(20)<<"Father Name";
cout<<setw(15)<<"Class";
cout<<setw(16)<<"Cityn";
for(i=0; i<40; i++)
{
cout<<"- ";
}
cout<<endl;
while(fp.read((char *) &in, sizeof(in)))
{
cout<<setw(5)<<in.id<<setw(18)<<in.n<<setw(20)<<in.fn<<setw(15)<<in.cl<<setw
(16)<<in.ci<<"n";
}
fp.close();
}
void search()
{
gotoxy(20,10);
cout<<"Enter ID :- ";
cin>>in1.id;
fp.open("Proj.txt",ios::in);
clrscr();
int y=0;
gotoxy(10,1);
textcolor(WHITE);
cprintf("Search Details.");
gotoxy(1,3);
for(int i=0; i<40; i++)
{
cout<<"- ";
}
cout<<setw(5)<<"id";
cout<<setw(18)<<"Name";
cout<<setw(20)<<"Father Name";
cout<<setw(15)<<"Class";
cout<<setw(16)<<"Cityn";
for(i=0; i<40; i++)
{
cout<<"- ";
}
cout<<endl;
while(fp.read((char *) &in, sizeof(in)))
{
if(strcmp(in.id,in1.id)==0)
{
y++;
cout<<setw(5)<<in1.id<<setw(18)<<in.n<<setw(18)<<in.fn<<setw(15)<<in.cl
<<setw(16)<<in.ci<<"n";
}
}
if(y==0)
{
clrscr();
gotoxy(25,10);
cout<<"ID is Not Avalible.";
}
fp.close();
}
void dele()
{
int t=0;
gotoxy(20,10);
cout<<"Enter ID :- ";
cin>>in1.id;
clrscr();
fp.open("Proj.txt",ios::in);
fp1.open("temp1.txt",ios::out);
while(fp.read((char *) &in, sizeof(in)))
{
if(strcmp(in.id,in1.id)==0)
{
gotoxy(22,3);
cout<<"Record is Deleted.";
t++;
}
else
{
fp1.write((char *) &in, sizeof(in));
}
}
if(t==0)
{
gotoxy(25,10);
cout<<"ID is Not Avaliable.";
}
fp1.close();
fp.close();
remove("Proj.txt");
rename("temp1.txt","Proj.txt");
}
void modi()
{
int h=0;
gotoxy(20,10);
cout<<"Enter ID :- ";
cin>>in1.id;
clrscr();
fp.open("Proj.txt",ios::in);
fp1.open("temp1.txt",ios::out);
while(fp.read((char *) &in, sizeof(in)))
{
if(strcmp(in.id,in1.id)==0)
{
strcpy(a.id,in.id);
for(int i=0; i<40; i++)
{
cout<<"- ";
}
cout<<endl;
gotoxy(2,2);
cout<<setw(5)<<"id";
cout<<setw(18)<<"Name";
cout<<setw(20)<<"Father Name";
cout<<setw(15)<<"Class";
cout<<setw(16)<<"Cityn";
for(i=0; i<40; i++)
{
cout<<"- ";
}
cout<<endl;
gotoxy(4,4);
cout<<a.id;
gotoxy(15,4);
gets(a.n);
gotoxy(33,4);
gets(a.fn);
gotoxy(53,4);
gets(a.cl);
gotoxy(67,4);
gets(a.ci);
fp1.write((char *) &a, sizeof(a));
h++;
gotoxy(10,7);
cout<<"Data Changed.";
}
else
{
fp1.write((char *) &in, sizeof(in));
}
}
if(h==0)
{
gotoxy(25,10);
cout<<"ID is not Avaliable.";
}
fp1.close();
fp.close();
remove("Proj.txt");
rename("temp1.txt","Proj.txt");
}
void intro()
{
gotoxy(64,21);
cout<<"Deepika Mittal";
gotoxy(64,22);
cout<<"BCA II Year";
}
void head()
{
textcolor(WHITE);
gotoxy(28,1);
cout<<"Name List Generator";
}
void well()
{
textcolor(WHITE);
gotoxy(24,9);
cprintf("Wel-Come To");
gotoxy(20,11);
cprintf("Name List Generator");
}
void than()
{
gotoxy(30,10);
textcolor(WHITE);
cprintf("Thank You");
}
};
void main()
{
Project tt;
clrscr();
tt.well();
delay(1000);
clrscr();
pass();
l:
clrscr();
Project a,s,r,m,d;
char c;
s.head();
gotoxy(16,3);
textcolor(2);
for(int i=0; i<38; i++)
{
cprintf("*");
}
cout<<endl;
for( i=3; i<18; i++)
{
textcolor(2);
gotoxy(16,i);
cprintf("*");
}
cout<<endl;
for(i=3; i<18; i++)
{
textcolor(2);
gotoxy(54,i);
cprintf("*");
}
cout<<endl;
textcolor(2);
gotoxy(16,17);
cout<<endl;
for(i=3; i<18; i++)
{
textcolor(2);
gotoxy(54,i);
cprintf("*");
}
cout<<endl;
textcolor(2);
gotoxy(16,17);
for(i=0; i<38; i++)
{
cprintf("*");
}
gotoxy(19,5);
textcolor(20);
cprintf("A");
textcolor(WHITE);
cprintf("dd Student");
gotoxy(19,7);
textcolor(20);
cprintf("V");
textcolor(WHITE);
cprintf("iew Student");
gotoxy(19,9);
textcolor(20);
cprintf("S");
textcolor(WHITE);
cprintf("earch Student");
gotoxy(19,11);
textcolor(20);
cprintf("D");
textcolor(WHITE);
cprintf("elete Student");
gotoxy(19,13);
textcolor(20);
cprintf("M");
textcolor(WHITE);
cprintf("odified Student");
gotoxy(19,15);
textcolor(20);
cprintf("E");
textcolor(WHITE);
cprintf("xitn");
a.intro();
c=getch();
if(c=='a' || c=='A')
{
clrscr();
a.get();
a.store();
getch();
goto l;
}
else if(c=='v' || c=='V')
{
clrscr();
s.show();
getch();
goto l;
}
else if(c=='s' || c=='S')
{
clrscr();
r.search();
getch();
goto l;
}
else if(c=='d' || c=='D')
{
clrscr();
d.dele();
getch();
goto l;
}
else if(c=='m' || c=='M')
{
clrscr();
m.modi();
getch();
goto l;
}
Thank you

More Related Content

Similar to Deepika Mittal , BCA Third Year

Ronak Kachhawa , BCA Third Year
Ronak Kachhawa , BCA Third YearRonak Kachhawa , BCA Third Year
Ronak Kachhawa , BCA Third Year
Dezyneecole
ย 
Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
Dezyneecole
ย 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
Dezyneecole
ย 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
Dezyneecole
ย 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
dezyneecole
ย 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
Dezyneecole
ย 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
ย 
Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
dezyneecole
ย 
Kirti Kumawat, BCA Third Year
Kirti Kumawat, BCA Third YearKirti Kumawat, BCA Third Year
Kirti Kumawat, BCA Third Year
dezyneecole
ย 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
Dezyneecole
ย 
Mithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third YearMithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third Year
dezyneecole
ย 
Bhanu Pratap Singh Shekhawat, BCA Third Year
Bhanu Pratap Singh Shekhawat, BCA Third YearBhanu Pratap Singh Shekhawat, BCA Third Year
Bhanu Pratap Singh Shekhawat, BCA Third Year
Dezyneecole
ย 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
dezyneecole
ย 
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole CollegeUmesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
dezyneecole
ย 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
ย 
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
dezyneecole
ย 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
dezyneecole
ย 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shop
Yash Panwar
ย 
c++ project
c++ projectc++ project
c++ project
Trish004
ย 
computer science project
computer science projectcomputer science project
computer science project
Roshan Bastia
ย 

Similar to Deepika Mittal , BCA Third Year (20)

Ronak Kachhawa , BCA Third Year
Ronak Kachhawa , BCA Third YearRonak Kachhawa , BCA Third Year
Ronak Kachhawa , BCA Third Year
ย 
Shikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third YearShikh Mohammad Usman Haidar , BCA Third Year
Shikh Mohammad Usman Haidar , BCA Third Year
ย 
Ram Prasad , BCA Third Year
Ram Prasad , BCA Third YearRam Prasad , BCA Third Year
Ram Prasad , BCA Third Year
ย 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
ย 
Deepika Mittal , BCA Third Year
Deepika Mittal , BCA Third YearDeepika Mittal , BCA Third Year
Deepika Mittal , BCA Third Year
ย 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third Year
ย 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
ย 
Reshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third YearReshma Kodwani , BCA Third Year
Reshma Kodwani , BCA Third Year
ย 
Kirti Kumawat, BCA Third Year
Kirti Kumawat, BCA Third YearKirti Kumawat, BCA Third Year
Kirti Kumawat, BCA Third Year
ย 
Shivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third YearShivani Chouhan , BCA Third Year
Shivani Chouhan , BCA Third Year
ย 
Mithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third YearMithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third Year
ย 
Bhanu Pratap Singh Shekhawat, BCA Third Year
Bhanu Pratap Singh Shekhawat, BCA Third YearBhanu Pratap Singh Shekhawat, BCA Third Year
Bhanu Pratap Singh Shekhawat, BCA Third Year
ย 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
ย 
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole CollegeUmesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
Umesh Taglani,Project on C language,Final Year BCA ,Dezyne E'cole College
ย 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
ย 
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
Kuldeep Singh Project on C language and Visual Basic ,Final Year BCA ,Dezyne ...
ย 
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole CollegeDinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
Dinesh Narayan ,Project on C++,Final year BCA ,Dezyne E'cole College
ย 
Computer science investigatory project- computer shop
Computer science investigatory project- computer shopComputer science investigatory project- computer shop
Computer science investigatory project- computer shop
ย 
c++ project
c++ projectc++ project
c++ project
ย 
computer science project
computer science projectcomputer science project
computer science project
ย 

More from dezyneecole

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
dezyneecole
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
dezyneecole
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
dezyneecole
ย 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
ย 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
dezyneecole
ย 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
dezyneecole
ย 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
dezyneecole
ย 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
dezyneecole
ย 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
dezyneecole
ย 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
dezyneecole
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
dezyneecole
ย 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
dezyneecole
ย 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
dezyneecole
ย 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
dezyneecole
ย 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
dezyneecole
ย 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
dezyneecole
ย 

More from dezyneecole (20)

Gracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second YearGracika Benjamin , Diploma Fashion Design Second Year
Gracika Benjamin , Diploma Fashion Design Second Year
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
ย 
Harsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second YearHarsha Chhaparwal, Diploma Fashion Design Second Year
Harsha Chhaparwal, Diploma Fashion Design Second Year
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second YearSheikh Anjum Firdoush , Diploma Fashion Design Second Year
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year
ย 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
ย 
Sushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second YearSushmita Bhati, Diploma Fashion Design Second Year
Sushmita Bhati, Diploma Fashion Design Second Year
ย 
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
Sushmita Bhati, Diploma Fashion Design Second Year, (How to Design for Fashio...
ย 
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
Somya Jain, Diploma Fashion Design Second Year, (How to Design for Fashion In...
ย 
Gitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 YearGitesh Chhatwani , BCA -3 Year
Gitesh Chhatwani , BCA -3 Year
ย 
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
Anurag Yadav , B.Voc Interior Design 1st Year ( Residential Portfolio)
ย 
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
Namita Bakoliya, Diploma Fashion Design First Year, (Corel Draw Project)
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Pattern Engineer...
ย 
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
Sheikh Anjum Firdoush , Diploma Fashion Design Second Year, (Draping Project)
ย 
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Embroidery Project)
ย 
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
Gouri Ramchandani, Diploma Fashion Design First Year, (Corel DrawProject)
ย 
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
Dimple Mordani, Diploma Fashion Design First Year, (illustration for Fashion ...
ย 
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
Dimple Mordani, Diploma Fashion Design First Year, (Design Basics Project)
ย 
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
Dimple Mordani, Diploma Fashion Design First Year, (Corel Draw Project)
ย 

Recently uploaded

skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
Mohammad Al-Dhahabi
ย 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
MJDuyan
ย 
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
indexPub
ย 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
giancarloi8888
ย 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Henry Hollis
ย 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
nitinpv4ai
ย 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
iammrhaywood
ย 
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
siemaillard
ย 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
Iris Thiele Isip-Tan
ย 
MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
khuleseema60
ย 
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
Nguyen Thanh Tu Collection
ย 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
zuzanka
ย 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
TechSoup
ย 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
TechSoup
ย 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
blueshagoo1
ย 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
zuzanka
ย 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
deepaannamalai16
ย 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
RidwanHassanYusuf
ย 
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
Nguyen Thanh Tu Collection
ย 
Bossa Nโ€™ Roll Records by Ismael Vazquez.
Bossa Nโ€™ Roll Records by Ismael Vazquez.Bossa Nโ€™ Roll Records by Ismael Vazquez.
Bossa Nโ€™ Roll Records by Ismael Vazquez.
IsmaelVazquez38
ย 

Recently uploaded (20)

skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)skeleton System.pdf (skeleton system wow)
skeleton System.pdf (skeleton system wow)
ย 
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) CurriculumPhilippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
Philippine Edukasyong Pantahanan at Pangkabuhayan (EPP) Curriculum
ย 
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
THE SACRIFICE HOW PRO-PALESTINE PROTESTS STUDENTS ARE SACRIFICING TO CHANGE T...
ย 
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdfREASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
REASIGNACION 2024 UGEL CHUPACA 2024 UGEL CHUPACA.pdf
ย 
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.pptLevel 3 NCEA - NZ: A  Nation In the Making 1872 - 1900 SML.ppt
Level 3 NCEA - NZ: A Nation In the Making 1872 - 1900 SML.ppt
ย 
Bonku-Babus-Friend by Sathyajith Ray (9)
Bonku-Babus-Friend by Sathyajith Ray  (9)Bonku-Babus-Friend by Sathyajith Ray  (9)
Bonku-Babus-Friend by Sathyajith Ray (9)
ย 
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptxNEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
NEWSPAPERS - QUESTION 1 - REVISION POWERPOINT.pptx
ย 
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptxPrรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
Prรฉsentationvvvvvvvvvvvvvvvvvvvvvvvvvvvv2.pptx
ย 
Educational Technology in the Health Sciences
Educational Technology in the Health SciencesEducational Technology in the Health Sciences
Educational Technology in the Health Sciences
ย 
MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025MDP on air pollution of class 8 year 2024-2025
MDP on air pollution of class 8 year 2024-2025
ย 
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
Bร€I TแบฌP Bแป” TRแปข TIแบพNG ANH LแปšP 9 Cแบข Nฤ‚M - GLOBAL SUCCESS - Nฤ‚M HแปŒC 2024-2025 - ...
ย 
SWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptxSWOT analysis in the project Keeping the Memory @live.pptx
SWOT analysis in the project Keeping the Memory @live.pptx
ย 
Accounting for Restricted Grants When and How To Record Properly
Accounting for Restricted Grants  When and How To Record ProperlyAccounting for Restricted Grants  When and How To Record Properly
Accounting for Restricted Grants When and How To Record Properly
ย 
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
Elevate Your Nonprofit's Online Presence_ A Guide to Effective SEO Strategies...
ย 
CIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdfCIS 4200-02 Group 1 Final Project Report (1).pdf
CIS 4200-02 Group 1 Final Project Report (1).pdf
ย 
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptxRESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
RESULTS OF THE EVALUATION QUESTIONNAIRE.pptx
ย 
HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.HYPERTENSION - SLIDE SHARE PRESENTATION.
HYPERTENSION - SLIDE SHARE PRESENTATION.
ย 
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptxBIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
BIOLOGY NATIONAL EXAMINATION COUNCIL (NECO) 2024 PRACTICAL MANUAL.pptx
ย 
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
CHUYรŠN ฤแป€ ร”N TแบฌP Vร€ PHรT TRIแป‚N Cร‚U HแปŽI TRONG ฤแป€ MINH HแปŒA THI TแปT NGHIแป†P THPT ...
ย 
Bossa Nโ€™ Roll Records by Ismael Vazquez.
Bossa Nโ€™ Roll Records by Ismael Vazquez.Bossa Nโ€™ Roll Records by Ismael Vazquez.
Bossa Nโ€™ Roll Records by Ismael Vazquez.
ย 

Deepika Mittal , BCA Third Year

  • 1. Project Report C++ Programming Information Technology Topic Name List Generator Submitted By Deepika Mittal BCA IInd Year Dezyne Eโ€™cole College www.dezyneecole.com R
  • 2. Project Report On C++ Programming At Dezyne Eโ€™cole College Ajmer Submitted to Dezyne Eโ€™cole College Towards The Partial Fulfillment on Bachelorโ€™s of Computer Application By Deepika Mittal Dezyne Eโ€™cole College 106/10, Civil line, Ajmer Tel:โ€“0145-2624679 www.dezyneecole.com 2016-17 R
  • 3. ACKNOWLEDGMENT I DEEPIKA MITTAL, STUDENT OF DEZYNE Eโ€™COLE COLLEGE, AN EXTERNALLY GRATEFUL TO EACH AND EVERY INDIVIDUAL WHO HAS CONTRIBUTED IN SUCCESSFUL COMPLETION OF MY PROJECT. I EXPRESS MY GRATITUDE TOWARDS DEZYNE Eโ€™COLE COLLEGE FOR THEIR GUIDANCE AND CONSTANT SUPERVISION AS WELL AS FOR PROVIDING THE NECESSARY INFORMATION AND SUPPORT REGARDING THE COMPLETION OF PROJECT. THANK YOU
  • 4. SYNOPSIS THIS PROJECT IS A MINER PROJECT MODE, BASED ON THE PRATICAL CONCEPTS OF C++. THIS PROJECT HAS MADE OUR BASIC PRATICAL CONCEPTS ON C++ STRONG.
  • 12. Source Code #include<iostream.h> #include<conio.h> #include<iomanip.h> #include<stdio.h> #include<stdlib.h> #include<fstream.h> #include<string.h> #include<dos.h> class adm { public: char un[25],up[25]; void log() { strcpy(un,"Hello"); strcpy(up,"D'cole"); } }; adm rt; void pass() { rt.log(); b: char una[25],upa[25]; gotoxy(20,10); cout<<"Enter User Name :- "; cin>>una; gotoxy(20,11); cout<<"Enter Password :- "; char ch; int j; j=0; while(1) { ch=getch(); if(ch==8) { cprintf("b b"); j--; } else if(ch==13) { break; }
  • 13. else { upa[j]=ch; cout<<"*"; j++; } } upa[j]='0'; if(strcmp(una,rt.un)==0 && strcmp(upa,rt.up)==0) { goto en; } else { clrscr(); goto b; } en: } class Pro1 { public: char id[25],n[25],fn[25],cl[25],ci[25]; }; fstream fp,fp1,f; Pro1 in,in1,a; class Project { public: void get() { /*count(); id=n; */ cout<<setw(5)<<"id"; cout<<setw(15)<<"Name"; cout<<setw(20)<<"Father Name"; cout<<setw(15)<<"Class"; cout<<setw(16)<<"Cityn"; gotoxy(4,2); cin>>in.id; gotoxy(15,2); gets(in.n); gotoxy(30,2); gets(in.fn); gotoxy(51,2); gets(in.cl); gotoxy(67,2); gets(in.ci); }
  • 14. void store() { fp.open("Proj.txt",ios::out | ios::app); fp.write((char *) &in, sizeof(in)); cout<<"nData Stored."; fp.close(); } void show() { fp.open("Proj.txt",ios::in); for(int i=0; i<40; i++) { cout<<"- "; } cout<<endl; cout<<setw(5)<<"id"; cout<<setw(18)<<"Name"; cout<<setw(20)<<"Father Name"; cout<<setw(15)<<"Class"; cout<<setw(16)<<"Cityn"; for(i=0; i<40; i++) { cout<<"- "; } cout<<endl; while(fp.read((char *) &in, sizeof(in))) { cout<<setw(5)<<in.id<<setw(18)<<in.n<<setw(20)<<in.fn<<setw(15)<<in.cl<<setw (16)<<in.ci<<"n"; } fp.close(); } void search() { gotoxy(20,10); cout<<"Enter ID :- "; cin>>in1.id; fp.open("Proj.txt",ios::in); clrscr(); int y=0; gotoxy(10,1); textcolor(WHITE); cprintf("Search Details."); gotoxy(1,3); for(int i=0; i<40; i++) { cout<<"- "; }
  • 15. cout<<setw(5)<<"id"; cout<<setw(18)<<"Name"; cout<<setw(20)<<"Father Name"; cout<<setw(15)<<"Class"; cout<<setw(16)<<"Cityn"; for(i=0; i<40; i++) { cout<<"- "; } cout<<endl; while(fp.read((char *) &in, sizeof(in))) { if(strcmp(in.id,in1.id)==0) { y++; cout<<setw(5)<<in1.id<<setw(18)<<in.n<<setw(18)<<in.fn<<setw(15)<<in.cl <<setw(16)<<in.ci<<"n"; } } if(y==0) { clrscr(); gotoxy(25,10); cout<<"ID is Not Avalible."; } fp.close(); } void dele() { int t=0; gotoxy(20,10); cout<<"Enter ID :- "; cin>>in1.id; clrscr(); fp.open("Proj.txt",ios::in); fp1.open("temp1.txt",ios::out); while(fp.read((char *) &in, sizeof(in))) { if(strcmp(in.id,in1.id)==0) { gotoxy(22,3); cout<<"Record is Deleted."; t++; } else { fp1.write((char *) &in, sizeof(in));
  • 16. } } if(t==0) { gotoxy(25,10); cout<<"ID is Not Avaliable."; } fp1.close(); fp.close(); remove("Proj.txt"); rename("temp1.txt","Proj.txt"); } void modi() { int h=0; gotoxy(20,10); cout<<"Enter ID :- "; cin>>in1.id; clrscr(); fp.open("Proj.txt",ios::in); fp1.open("temp1.txt",ios::out); while(fp.read((char *) &in, sizeof(in))) { if(strcmp(in.id,in1.id)==0) { strcpy(a.id,in.id); for(int i=0; i<40; i++) { cout<<"- "; } cout<<endl; gotoxy(2,2); cout<<setw(5)<<"id"; cout<<setw(18)<<"Name"; cout<<setw(20)<<"Father Name"; cout<<setw(15)<<"Class"; cout<<setw(16)<<"Cityn"; for(i=0; i<40; i++) { cout<<"- "; } cout<<endl; gotoxy(4,4); cout<<a.id; gotoxy(15,4); gets(a.n); gotoxy(33,4); gets(a.fn);
  • 17. gotoxy(53,4); gets(a.cl); gotoxy(67,4); gets(a.ci); fp1.write((char *) &a, sizeof(a)); h++; gotoxy(10,7); cout<<"Data Changed."; } else { fp1.write((char *) &in, sizeof(in)); } } if(h==0) { gotoxy(25,10); cout<<"ID is not Avaliable."; } fp1.close(); fp.close(); remove("Proj.txt"); rename("temp1.txt","Proj.txt"); } void intro() { gotoxy(64,21); cout<<"Deepika Mittal"; gotoxy(64,22); cout<<"BCA II Year"; } void head() { textcolor(WHITE); gotoxy(28,1); cout<<"Name List Generator"; } void well() { textcolor(WHITE); gotoxy(24,9); cprintf("Wel-Come To"); gotoxy(20,11); cprintf("Name List Generator"); } void than() {
  • 18. gotoxy(30,10); textcolor(WHITE); cprintf("Thank You"); } }; void main() { Project tt; clrscr(); tt.well(); delay(1000); clrscr(); pass(); l: clrscr(); Project a,s,r,m,d; char c; s.head(); gotoxy(16,3); textcolor(2); for(int i=0; i<38; i++) { cprintf("*"); } cout<<endl; for( i=3; i<18; i++) { textcolor(2); gotoxy(16,i); cprintf("*"); } cout<<endl; for(i=3; i<18; i++) { textcolor(2); gotoxy(54,i); cprintf("*"); } cout<<endl; textcolor(2); gotoxy(16,17); cout<<endl; for(i=3; i<18; i++) { textcolor(2); gotoxy(54,i); cprintf("*"); } cout<<endl;
  • 19. textcolor(2); gotoxy(16,17); for(i=0; i<38; i++) { cprintf("*"); } gotoxy(19,5); textcolor(20); cprintf("A"); textcolor(WHITE); cprintf("dd Student"); gotoxy(19,7); textcolor(20); cprintf("V"); textcolor(WHITE); cprintf("iew Student"); gotoxy(19,9); textcolor(20); cprintf("S"); textcolor(WHITE); cprintf("earch Student"); gotoxy(19,11); textcolor(20); cprintf("D"); textcolor(WHITE); cprintf("elete Student"); gotoxy(19,13); textcolor(20); cprintf("M"); textcolor(WHITE); cprintf("odified Student"); gotoxy(19,15); textcolor(20); cprintf("E"); textcolor(WHITE); cprintf("xitn"); a.intro(); c=getch(); if(c=='a' || c=='A') { clrscr(); a.get(); a.store(); getch(); goto l; } else if(c=='v' || c=='V') { clrscr();
  • 20. s.show(); getch(); goto l; } else if(c=='s' || c=='S') { clrscr(); r.search(); getch(); goto l; } else if(c=='d' || c=='D') { clrscr(); d.dele(); getch(); goto l; } else if(c=='m' || c=='M') { clrscr(); m.modi(); getch(); goto l; }