SlideShare a Scribd company logo
SUBMITED BY
Shivani Chouhan
Bachelors of Computer Application II YEAR
Dezyne E´cole College
www.dezyneecole.com
INFORMATION TECHNOLOGY
PROJECT REPORT
C++
NAME LIST GENERATOR
TOPIC
C++
Project Report
On
C++ Programming
At
Dezyne E´cole College
Ajmer
Submitted to
Dezyne E ´cole College
Towards the
Partial Fulfillment on
Bachelors of Computer Application
By
Shivani Chouhan
Dezyne E´cole College
106/10 Civil Line, Ajmer
Tel – 0145-2624679
Www.dezyneecole.com
2016
Acknowledgement
I Shivani Chouhan, Student On Dezyne E´cole College, An Extremely
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 Contrast
Supervision As Well As For Providing The Necessary Information And
Support Regarding The Completion Of Project.
Thank You
1 | P a g e
Synopsis
This Project Is A Minor Project Made, Based On The Practical Concept
Of C++. This Project Has Made Our Basic Practical Concepts On C++
Stronger.
2 | P a g e
3 | P a g e
4 | P a g e
5 | P a g e
6 | P a g e
Source Code:
#include<iostream.h>
#include<conio.h>
#include<iomanip.h>
#include<stdio.h>
#include<stdlib.h>
#include<fstream.h>
7 | P a g e
#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)
8 | P a g e
{
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:
9 | P a g e
char id[25],n[25],fn[25],cl[25],ci[25];
};
fstream fp,fp1,f;
Pro1 in,in1,a;
class Project
{
public:
/* char nm[15], c[10];
int n,id;
void count()
{
f.open("count.txt",ios::in);
if(f.fail()!=0)
{
n=0;
fp.open("count.txt",ios::out);
fp<<n;
fp.close();
}
else
{
f>>n;
n=n+1;
fp.open("count.txt",ios::out);
fp<<n;
fp.close();
}
f.close();
} */
void get()
10 | P a g e
{
/*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++)
11 | P a g e
{
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(1
6)<<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);
12 | P a g e
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.";
}
13 | P a g e
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();
14 | P a g e
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++)
15 | P a g e
{
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();
16 | P a g e
fp.close();
remove("Proj.txt");
rename("temp1.txt","Proj.txt");
}
void intro()
{
gotoxy(64,21);
cout<<"Shivani Chouhan";
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");
17 | P a g e
}
};
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++)
18 | P a g e
{
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");
19 | P a g e
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')
20 | P a g e
{
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;
}
else if(c=='e' || c=='E')
{
clrscr();
m.than();
delay(800);
exit(0);
}
getch();
}
21 | P a g e
THANK YOU

More Related Content

Similar to Shivani Chouhan , BCA Third Year

Rounit Mathur , BCA Third Year
Rounit Mathur , BCA Third YearRounit Mathur , BCA Third Year
Rounit Mathur , BCA Third Year
Dezyneecole
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
dezyneecole
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
Dezyneecole
 
Rakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third YearRakesh Bijawat , BCA Third Year
Rakesh Bijawat , 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
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , 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
 
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
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
Dezyneecole
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , 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
 
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
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
dezyneecole
 
Demonstration on extending_the_pageview_feature_to_page_section_based_present...
Demonstration on extending_the_pageview_feature_to_page_section_based_present...Demonstration on extending_the_pageview_feature_to_page_section_based_present...
Demonstration on extending_the_pageview_feature_to_page_section_based_present...
Fajar Purnama
 
computer science project
computer science projectcomputer science project
computer science project
Roshan Bastia
 
Mithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third YearMithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , 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
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
Dezyneecole
 

Similar to Shivani Chouhan , BCA Third Year (20)

Rounit Mathur , BCA Third Year
Rounit Mathur , BCA Third YearRounit Mathur , BCA Third Year
Rounit Mathur , BCA Third Year
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Deepak Soni ,BCA Third Year
Deepak Soni ,BCA Third YearDeepak Soni ,BCA Third Year
Deepak Soni ,BCA Third Year
 
Rakesh Bijawat , BCA Third Year
Rakesh Bijawat , BCA Third YearRakesh Bijawat , BCA Third Year
Rakesh Bijawat , 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
 
Vinita Vaishnav , BCA Third Year
Vinita Vaishnav , BCA Third YearVinita Vaishnav , BCA Third Year
Vinita Vaishnav , 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
 
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
 
Hardik Jadam , BCA Third Year
Hardik Jadam , BCA Third YearHardik Jadam , BCA Third Year
Hardik Jadam , BCA Third Year
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , 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
 
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
 
Gaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third YearGaurav Jatav , BCA Third Year
Gaurav Jatav , BCA Third Year
 
Demonstration on extending_the_pageview_feature_to_page_section_based_present...
Demonstration on extending_the_pageview_feature_to_page_section_based_present...Demonstration on extending_the_pageview_feature_to_page_section_based_present...
Demonstration on extending_the_pageview_feature_to_page_section_based_present...
 
computer science project
computer science projectcomputer science project
computer science project
 
Mithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , BCA Third YearMithlesh Singh Rawat , BCA Third Year
Mithlesh Singh Rawat , 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
 
Pooja Sharma , BCA Third Year
Pooja Sharma , BCA Third YearPooja Sharma , BCA Third Year
Pooja Sharma , BCA Third Year
 

More from Dezyneecole

Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Dezyneecole
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Dezyneecole
 
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Dezyneecole
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Dezyneecole
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Dezyneecole
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
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, (Design Basics Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics 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, (Embroidery Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
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, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dezyneecole
 

More from Dezyneecole (20)

Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
Pratibha Kumari, Diploma Fashion Design First Year, (Basic Pattern Developmen...
 
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
Shaily Goyar, Diploma Fashion Design First Year, (Basic Pattern Development P...
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
Shaily Goyar, Diploma Fashion Design First Year, (Fashion illustration for Fa...
 
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
Shaily Goyar, Diploma Fashion Design First Year, (Embroidery Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
Shaily Goyar, Diploma Fashion Design First Year, (Fashion Draping Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
Shaily Goyar, Diploma Fashion Design First Year, (Design Basics Project)
 
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
Shaily Goyar, Diploma Fashion Design First Year, (Corel Draw Project)
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
Tanya Jain, Diploma Fashion Design First Year, (Fashion illustration for Fash...
 
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
Tanya Jain , Diploma Fashion Design First Year, (Basic Pattern Development Pr...
 
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
Tanya Jain, Diploma Fashion Design First Year, (Embroidery Project)
 
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
Tanya Jain, Diploma Fashion Design First Year, (Fashion Draping Project)
 
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
Tanya Jain , Diploma Fashion Design First Year, (Design Basics Project)
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
Gouri Ramchandani, Diploma Fashion Design First Year, (Illustration For Fashi...
 
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
Gouri Ramchandani, Diploma Fashion Design First Year, (Basic Pattern Developm...
 
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, (Design Basics Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics  Project)
Gouri Ramchandani, Diploma Fashion Design First Year, (Design Basics 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, (Embroidery Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)Dimple Mordani, Diploma Fashion Design First Year, (Embroidery  Project)
Dimple Mordani, Diploma Fashion Design First Year, (Embroidery Project)
 
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, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
Dimple Mordani, Diploma Fashion Design First Year, (Basic Pattern Development...
 

Recently uploaded

Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
Ashokrao Mane college of Pharmacy Peth-Vadgaon
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
Peter Windle
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
ArianaBusciglio
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
Jisc
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
Vivekanand Anglo Vedic Academy
 
Chapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdfChapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdf
Kartik Tiwari
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
Mohd Adib Abd Muin, Senior Lecturer at Universiti Utara Malaysia
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Atul Kumar Singh
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
Atul Kumar Singh
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
siemaillard
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
Jisc
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
Sandy Millin
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
heathfieldcps1
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
deeptiverma2406
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
DhatriParmar
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
tarandeep35
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
TechSoup
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
MysoreMuleSoftMeetup
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
Jean Carlos Nunes Paixão
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
Delapenabediema
 

Recently uploaded (20)

Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.Biological Screening of Herbal Drugs in detailed.
Biological Screening of Herbal Drugs in detailed.
 
Embracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic ImperativeEmbracing GenAI - A Strategic Imperative
Embracing GenAI - A Strategic Imperative
 
Group Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana BuscigliopptxGroup Presentation 2 Economics.Ariana Buscigliopptx
Group Presentation 2 Economics.Ariana Buscigliopptx
 
How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...How libraries can support authors with open access requirements for UKRI fund...
How libraries can support authors with open access requirements for UKRI fund...
 
The French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free downloadThe French Revolution Class 9 Study Material pdf free download
The French Revolution Class 9 Study Material pdf free download
 
Chapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdfChapter -12, Antibiotics (One Page Notes).pdf
Chapter -12, Antibiotics (One Page Notes).pdf
 
Chapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptxChapter 3 - Islamic Banking Products and Services.pptx
Chapter 3 - Islamic Banking Products and Services.pptx
 
Guidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th SemesterGuidance_and_Counselling.pdf B.Ed. 4th Semester
Guidance_and_Counselling.pdf B.Ed. 4th Semester
 
Language Across the Curriculm LAC B.Ed.
Language Across the  Curriculm LAC B.Ed.Language Across the  Curriculm LAC B.Ed.
Language Across the Curriculm LAC B.Ed.
 
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa
 
The approach at University of Liverpool.pptx
The approach at University of Liverpool.pptxThe approach at University of Liverpool.pptx
The approach at University of Liverpool.pptx
 
2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...2024.06.01 Introducing a competency framework for languag learning materials ...
2024.06.01 Introducing a competency framework for languag learning materials ...
 
The basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptxThe basics of sentences session 5pptx.pptx
The basics of sentences session 5pptx.pptx
 
Best Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDABest Digital Marketing Institute In NOIDA
Best Digital Marketing Institute In NOIDA
 
The Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptxThe Accursed House by Émile Gaboriau.pptx
The Accursed House by Émile Gaboriau.pptx
 
S1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptxS1-Introduction-Biopesticides in ICM.pptx
S1-Introduction-Biopesticides in ICM.pptx
 
Introduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp NetworkIntroduction to AI for Nonprofits with Tapp Network
Introduction to AI for Nonprofits with Tapp Network
 
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
Mule 4.6 & Java 17 Upgrade | MuleSoft Mysore Meetup #46
 
Lapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdfLapbook sobre os Regimes Totalitários.pdf
Lapbook sobre os Regimes Totalitários.pdf
 
The Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official PublicationThe Challenger.pdf DNHS Official Publication
The Challenger.pdf DNHS Official Publication
 

Shivani Chouhan , BCA Third Year

  • 1. SUBMITED BY Shivani Chouhan Bachelors of Computer Application II YEAR Dezyne E´cole College www.dezyneecole.com INFORMATION TECHNOLOGY PROJECT REPORT C++ NAME LIST GENERATOR TOPIC C++
  • 2. Project Report On C++ Programming At Dezyne E´cole College Ajmer Submitted to Dezyne E ´cole College Towards the Partial Fulfillment on Bachelors of Computer Application By Shivani Chouhan Dezyne E´cole College 106/10 Civil Line, Ajmer Tel – 0145-2624679 Www.dezyneecole.com 2016
  • 3. Acknowledgement I Shivani Chouhan, Student On Dezyne E´cole College, An Extremely 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 Contrast Supervision As Well As For Providing The Necessary Information And Support Regarding The Completion Of Project. Thank You
  • 4. 1 | P a g e Synopsis This Project Is A Minor Project Made, Based On The Practical Concept Of C++. This Project Has Made Our Basic Practical Concepts On C++ Stronger.
  • 5. 2 | P a g e
  • 6. 3 | P a g e
  • 7. 4 | P a g e
  • 8. 5 | P a g e
  • 9. 6 | P a g e Source Code: #include<iostream.h> #include<conio.h> #include<iomanip.h> #include<stdio.h> #include<stdlib.h> #include<fstream.h>
  • 10. 7 | P a g e #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)
  • 11. 8 | P a g e { 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:
  • 12. 9 | P a g e char id[25],n[25],fn[25],cl[25],ci[25]; }; fstream fp,fp1,f; Pro1 in,in1,a; class Project { public: /* char nm[15], c[10]; int n,id; void count() { f.open("count.txt",ios::in); if(f.fail()!=0) { n=0; fp.open("count.txt",ios::out); fp<<n; fp.close(); } else { f>>n; n=n+1; fp.open("count.txt",ios::out); fp<<n; fp.close(); } f.close(); } */ void get()
  • 13. 10 | P a g e { /*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++)
  • 14. 11 | P a g e { 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(1 6)<<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);
  • 15. 12 | P a g e 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."; }
  • 16. 13 | P a g e 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();
  • 17. 14 | P a g e 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++)
  • 18. 15 | P a g e { 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();
  • 19. 16 | P a g e fp.close(); remove("Proj.txt"); rename("temp1.txt","Proj.txt"); } void intro() { gotoxy(64,21); cout<<"Shivani Chouhan"; 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");
  • 20. 17 | P a g e } }; 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++)
  • 21. 18 | P a g e { 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");
  • 22. 19 | P a g e 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')
  • 23. 20 | P a g e { 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; } else if(c=='e' || c=='E') { clrscr(); m.than(); delay(800); exit(0); } getch(); }
  • 24. 21 | P a g e THANK YOU