0% found this document useful (1 vote)
3K views19 pages

C++ Codes - AIRWAYS RESERVATION SYSTEM PROJECT

This document describes an airline reservation system project built in C++. The project allows users to make local and international flight bookings and view available flights. It collects passenger details like name, address, current and destination locations. It displays the ticket with this information and allows booking flights for 3 time options - 11 AM, 10 AM or 9 AM. The code provided implements classes for time, passenger and booking details and functions for getting and displaying data.

Uploaded by

Ankush Bhaal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
0% found this document useful (1 vote)
3K views19 pages

C++ Codes - AIRWAYS RESERVATION SYSTEM PROJECT

This document describes an airline reservation system project built in C++. The project allows users to make local and international flight bookings and view available flights. It collects passenger details like name, address, current and destination locations. It displays the ticket with this information and allows booking flights for 3 time options - 11 AM, 10 AM or 9 AM. The code provided implements classes for time, passenger and booking details and functions for getting and displaying data.

Uploaded by

Ankush Bhaal
Copyright
© © All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as PDF, TXT or read online on Scribd
You are on page 1/ 19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
0

More NextBlog

[email protected] Dashboard SignOut

C++Codes
Herec++codesandprojectsarepresented.Thecodesaresimpletolearnbasicprogrammingconcepts(forbeginners).Andalsosome
interestingprojectsarepresented.

Tuesday,23April2013

AIRWAYSRESERVATIONSYSTEMPROJECT
Description:

ThisProjectisanonlineticketbookingsystem.Acomputerreservationsystemwhichisusedforthe
reservationsofaparticularairline.ThisprojectisbuiltinC++andistestedinVisualStudio2012.It
performsfollowingfunctions:

Google+Followers
JunaidHassan
Addtocircles

1.LocalBooking
2.InternationalBooking
3.AvailableFlights

PREPAREDBY:

AFRAZAHMEDKHAN
RANAJAHANZEB

74havemeincircles

Viewall

CATEGORIES

DownloadCompleteWorkingCode:

C++ForBeginners

BuyNow

C++AdvanceLevel

SeeVideoDemoAirlineReservationSystem:

C++Projects

Airways reservation syste...

BlogArchive
2013(27)
April(27)
ATMMACHINEPROJECT
AIRWAYSRESERVATION
SYSTEMPROJECT
REPORTOFPROJECTMCQ'S
EXAM
MCQ'SEXAMPROJECT
Codetoproduceincreasingand
decreasingstars

CODE:
#include<iostream>
#include<iomanip>
#include<conio.h>
#include<string>
#include<windows.h>
#include<fstream>
usingnamespacestd;

charl_destination[5][20]=
{"LAHORE","ISLAMABAD","KARACHI","PESHAWAR","QUETTA"};
chari_destination[10][20]={"LONDON","BERLIN","DUBAI","NEW
YORK","BEIJING","PARIS","CAPETOWN","TOKYO","LOSANGELES","MUMBAI"};
classmytime
{
protected:
intchoose;

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

CODETODISPLAYFEBRUARY
MONTHASINCALENDER
GAMEOFCHANCEUSING
RANDOMFUNCTION
FILEHANDLINGPROGRAMS
FILEHANDLINGCODES
POLYMORPHISMEXAMPLE1
INHERITANCEEXAMPLE2
INHERITANCEEXAMPLE1
Codetoproducedecreasingstars
CodeforSimpleCalculator
GettingMaximumValuefrom
ArrayElements
ManipulatingArrayElements

1/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
public:
voidgetdata()
{
cout<<"ONWHICHTIMEYOUWANTTOTRAVEL"<<endl;
cout<<"PRESS1FOR11AM"<<endl;
cout<<"PRESS2FOR10AM"<<endl;
cout<<"PRESS3FOR9AM"<<endl;
cin>>choose;
}
voidshow()
{
if(choose==1)
{
cout<<"|
"<<endl;
cout<<"|flightmytime11AM
"<<endl;
cout<<"|_____________________________________________________________________
____"<<endl;
cout<<"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|flightmytime11AM
"<<endl<<

"|_________________________________________________________________________"
<<endl<<
"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
}
if(choose==2)
{
cout<<"|
"<<endl;
cout<<"|flightmytime10AM
"<<endl;
cout<<"|_____________________________________________________________________
____"<<endl;
cout<<"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|flightmytime10AM
"<<endl<<

"|_________________________________________________________________________"
<<endl<<
"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
}
if(choose==3)
{
cout<<"|
"<<endl;
cout<<"|flightmytime9AM
"<<endl;
cout<<"|_____________________________________________________________________
____"<<endl;
cout<<"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|flightmytime9AM
"<<endl<<

"|_________________________________________________________________________"
<<endl<<

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

Aprogrametocalculatefactorialof
anumber
Programmtogetmultiplication
table
Calculatingsumoffirsttenodd
numbersusingloo...
Aprogrametofindtherootsof
quadraticequation...
Aprogrammetocheckthe
divisibilityofanumber...
ConversionofFahrenheit
TemperatureinCelcius
AdditionandMultiplicationofTwo
Numbers
Takingtwoinputsinvariablesand
theninterchang...
CreatingColumnsusing"SETW"
Operator
SimpleCodeToShowYourName
orSentenceonScree...
C++(ProgrammingLanguage
CodesandProjects)

Pages
Home
BeginnersCodes
AdvanceLevelCodes
ProfessionalProjects
GeneralWritings
MtlabCodes
WebDevelopment

Google+Badge

Junaid Hassan
Follow

TotalPageviews

69,003

2/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
"GOODBYEANDHAVEASAFEJOURNEY
"<<endl;
}
}
};
classpassenger
{
public:
virtualvoidgetdata()
{
}
virtualvoidshow()
{
}
};
classbooking:publicpassenger
{
protected:
intnum;
charch;
charfirstname[60];
charlastname[60];
charaddress[60];
charc_loc[30];
chardest[30];
charreservation_no[60];
intoption;
public:
voidgetdata()
{
cout<<setw(40)<<"\n\n::Pleaseentertherequiredinformationfor
passengernumber::"<<endl;
cout<<"\n\n\nEnterthefirstnameofpassenger:";
cin.getline(firstname,60);
cout<<endl;
cout<<"Enterthelastnameofpassenger:";
cin.getline(lastname,60);
cout<<endl<<endl;
cout<<"Enteraddressofpassenger:";
cin.getline(address,60);
cout<<endl<<endl;
cout<<"EntertheResevationNo.ofTicket"<<endl;
cin.getline(reservation_no,60);
cout<<endl;
cout<<"Enterthecurrentlocationofpassenger(INCAPITALLETTERSONLY):";
cin.getline(c_loc,60);
cout<<endl<<endl;
cout<<"Enterthedestinationofpassenger(INCAPITALLETTERSONLY):";
cin.getline(dest,60);
cout<<endl<<endl;
system("CLS");
}
voidshow()
{
cout<<setw(40)<<"YourETicketis:"<<endl;
intt=1;
intr=12345;
cout<<"AIRLINETICKET
"<<endl;
cout<<"|TicketNo."<<t<<"ReferenceNo."<<r<<"\t
"<<endl;
cout<<"|_______________________________________________________________________
__"<<endl;
cout<<"|ResevationNo.:"<<reservation_no<<"
"<<endl;
cout<<"|_______________________________________________________________________
___"<<endl;
cout<<"|PassengerInformation:
"<<endl;
cout<<"|Name:"<<lastname<<"/"<<firstname<<"
"<<endl;
cout<<"|
"<<endl;
cout<<"|Address:"<<address<<"

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

3/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
"<<endl;
cout<<"|_______________________________________________________________________
__"<<endl;
cout<<"|flightInformation:
"<<endl;
cout<<"|12aug2011
"<<endl;
cout<<"|BOING747
"<<endl;
cout<<"|_______________________________________________________________________
__"<<endl;
cout<<"|Depart:"<<c_loc<<"
"<<endl;
cout<<"|Arrive:"<<dest<<"
"<<endl;
cout<<"|*BAGGAGEallowed40Kilos
"<<endl;
cout<<"|*contactAirlinetoConfirmbaggageallowance
"<<endl;
cout<<"|_______________________________________________________________________
__"<<endl;

ofstreamoutfile("E:\\E_ticket.txt");
outfile<<"AIRLINETICKET
"<<endl<<
"|TicketNo."<<t<<"ReferenceNo."<<r<<"\t"
<<endl<<

"|_________________________________________________________________________"
<<endl<<
"|ResevationNo.:"<<reservation_no<<""
<<endl<<
"|__________________________________________________________________________"
<<endl<<
"|PassengerInformation:
"<<endl<<
"|Name:"<<lastname<<"/"<<firstname<<"
"<<endl<<
"|
"<<endl<<
"|Address:"<<address<<"
"<<endl<<

"|_________________________________________________________________________"
<<endl<<
"|flightInformation:
"<<endl<<
"|12aug2011
"<<endl<<
"|BOING747
"<<endl<<

"|_________________________________________________________________________"
<<endl<<
"|Depart:"<<c_loc<<"
"<<endl<<
"|Arrive:"<<dest<<"
"<<endl<<
"|*BAGGAGEallowed40Kilos
"<<endl<<
"|*contactAirlinetoConfirmbaggageallowance
"<<endl<<

"|_________________________________________________________________________"
<<endl;

t=t+1;
r=r+1;

}
};

classsearch
{

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

4/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
public:
voidsearching()
{
cout<<"FOLLOWINGARETHEINTERNATIONALFLIGHTSAVAILABLE"<<endl;

for(inti=0;i<5;i++)

for(intj=0;j<10;j++)

cout<<"FLIGHTFROM"<<l_destination[i]<<"TO"<<i_destination[j]<<endl;
}
}
}
};
classlocal:publicbooking
{
protected:
intb_seat;
inte_seat;
intch;
intk;
intp;
intoption;
mytimet1;
public:
voidgetdata()
{
k=0;
p=0;
cout<<"InwhichAIRLINEyouwanttotravel"<<endl<<endl;
cout<<"1)PIA"<<endl;
cout<<"2)AIRBLUE"<<endl;
cout<<"3)ARABEMIRATES"<<endl;
cout<<"4)QATARAIRWAYS"<<endl;
cout<<"enteryourchoice"<<endl;;
cin>>option;
system("cls");
switch(option)
{
case1:
if(option==1)
cout<<setw(40)<<"\n\n\nWELCOMETOPIA"<<endl;
break;
case2:
if(option==2)
cout<<setw(40)<<"\n\n\nWELCOMETOAIRBLUE"
<<endl;
break;
case3:
if(option==3)
cout<<setw(40)<<"\n\n\nWELCOMETOARAB
EMIRATES"<<endl;
break;
case4:
if(option==4)
cout<<setw(40)<<"\n\n\nWELCOMETOQATAR
AIRWAYS"<<endl;
break;
}
cout<<setw(40)<<"\nTHESEARETHELOCALPLACESAVAILABLE\n\n\n"<<endl;
cin.ignore();
for(inti=0;i<5;i++)
{
cout<<l_destination[i]<<endl;
}
booking::getdata();
for(intj=0;j<5;j++)
{
if(strcmp(l_destination[j],c_loc)==0)
{

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

5/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
k++;
}

}
for(inti=0;i<5;i++)
{
if(strcmp(l_destination[i],c_loc)==0)

p++;

}
if(k==1&&p==1)

cout<<"FLIGHTAVAILABLEONTHISROUTE"<<endl;

b_seat=30;

e_seat=40;

cout<<"Inwhichclassyouwanttotravel?"<<endl;

cout<<"Makeyourchoice"<<endl<<endl;

cout<<"\n\n\n\n\n\n";

cout<<setw(60)<<"*************************************"<<endl;
cout<<setw(60)<<"*Press1forbuisnessclass*"<<endl;
cout<<setw(60)<<"*Press2foreconomyclass*"<<endl;
cout<<setw(60)<<"*************************************"
<<endl<<endl<<endl<<endl;

cout<<"Enteryourchoice"<<endl;

cin>>ch;

cout<<endl;
switch(ch)

case1:

b_seat;

if(b_seat<=0)

cout<<"SORRYNOSEATAVAILABLE"<<endl;

else

cout<<"SEATAVAILABLE"<<endl;

break;

case2:

e_seat;

if(e_seat<=0)

cout<<"SORRYNOSEATAVAILABLE"<<endl;

else

cout<<"SEATAVAILABLE"<<endl;

break;

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

6/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
}
t1.getdata();

system("CLS");
booking::show();
if(ch==1)

cout<<"|
"<<endl;
cout<<"|TicketInformation:
"<<endl;
cout<<"|BUISNESSCLASS
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|TicketInformation:
"<<endl<<
"|BUISNESSCLASS
"<<endl;

if(ch==2)

cout<<"|
"<<endl;
cout<<"|TicketInformation:
"<<endl;
cout<<"|ECONOMYCLASS
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|TicketInformation:
"<<endl<<
"|ECONOMYCLASS
"<<endl;
}

cout<<"|Status:confirmed
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|Status:confirmed
"<<endl;
t1.show();
}
else

cout<<"_________________________________________________________________________
_"<<endl;
cout<<"|SORRYNOFLIGHTAVAILABLEONTHISROUTERIGHTNOW
"<<endl;

cout<<"_________________________________________________________________________
_"<<endl;

}
}
};

classinternational:publicbooking

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

7/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT

protected:

intb1_seat;

inte1_seat;

intchoice;

intc;

intb;

intv;

charg;

mytimet1;

public:

voidgetdata()

b=0;

v=0;

cout<<"InwhichAIRLINEyouwanttotravel"<<endl<<endl;
cout<<"1)PIA"<<endl;
cout<<"2)AIRBLUE"<<endl;
cout<<"3)ARABEMIRATES"<<endl;
cout<<"4)QATARAIRWAYS"<<endl;
cout<<"enteryourchoice"<<endl;;
cin>>option;

system("cls");

switch(option)
{
case1:
if(option==1)
cout<<setw(40)<<"\n\n\nWELCOMETOPIA"<<endl;
break;
case2:
if(option==2)
cout<<setw(40)<<"\n\n\nWELCOMETOAIRBLUE"
<<endl;
break;
case3:
if(option==3)
cout<<setw(40)<<"\n\n\nWELCOMETOARAB
EMIRATES"<<endl;
break;
case4:
if(option==4)
cout<<setw(40)<<"\n\n\nWELCOMETOQATAR
AIRWAYS"<<endl;
break;
}
cout<<"\n\nTHESEARETHEINTERNATIONALPLACESAVAILABLE"<<endl<<endl;
cin.ignore();

for(inti=0;i<10;i++)

cout<<i_destination[i]<<endl;

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

8/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
}

booking::getdata();

for(intj=0;j<10;j++)

if(strcmp(i_destination[j],dest)==0)

v++;

}
for(inti=0;i<5;i++)

if(strcmp(l_destination[i],c_loc)==0)

b++;

}
if(b==1&&v==1)

cout<<"FLIGHTAVAILABLEONTHISROUTE"<<endl;

b1_seat=30;

e1_seat=40;

cout<<"Inwhichclassyouwanttotravel?"<<endl;

cout<<"Makeyourchoice"<<endl<<endl;

cout<<"\n\n\n\n\n\n";

cout<<setw(60)<<"*************************************"<<endl;
cout<<setw(60)<<"*Press1forbuisnessclass*"<<endl;
cout<<setw(60)<<"*Press2foreconomyclass*"<<endl;
cout<<setw(60)<<"*************************************"
<<endl<<endl<<endl<<endl;

cout<<"Enteryourchoice"<<endl;

cin>>choice;

cout<<endl;

switch(choice)

case1:

b1_seat;

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

9/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
if(b1_seat<=0)

cout<<"SORRYNOSEATAVAILABLE"<<endl;

else

cout<<"SEATAVAILABLE"<<endl;

break;

case2:

e1_seat;

if(e1_seat<=0)

cout<<"SORRYNOSEATAVAILABLE"<<endl;

else

cout<<"SEATAVAILABLE"<<endl;

break;

t1.getdata();

system("CLS");

booking::show();

if(choice==1)

cout<<"|
"<<endl;
cout<<"|TicketInformation:
"<<endl;
cout<<"|BUISNESSCLASS
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|TicketInformation:
"<<endl<<
"|BUSINESSCLASS
"<<endl;

if(choice==2)

cout<<"|
"<<endl;
cout<<"|TicketInformation:
"<<endl;
cout<<"|ECONOMYCLASS
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|
"<<endl<<
"|TicketInformation:
"<<endl<<

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

10/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
"|ECONOMYCLASS
"<<endl;

cout<<"|Status:confirmed
"<<endl;

ofstreamoutfile;
outfile.open("E:\\E_ticket.txt",ios::app);
outfile<<"|Status:confirmed
"<<endl;

t1.show();
}
else

{
cout<<"______________________________________________________________________
____"<<endl;
cout<<"|SORRYNOFLIGHTAVAILABLEONTHISROUTERIGHTNOW
"<<endl;

cout<<"__________________________________________________________________________
"<<endl;

}
}
};

classmain1

{
private:

charf;

intmenu_choice;

chara;

public:

voidgetdata()
{
m:
cout<<"\n\n\n\n\n\n";
cout<<setw(60)<<"*************************************"<<endl;
cout<<setw(60)<<"*AIRWAYSRESERVATION*"<<endl;
cout<<setw(60)<<"*MAINMENU*"<<endl;
cout<<setw(60)<<"*ENTERYOURCHOICE*"<<endl;
cout<<setw(60)<<"*PRESS1FORLOCALBOOKING*"<<endl;
cout<<setw(60)<<"*PRESS2FORINTERNATIONALBOOKING*"<<endl;
cout<<setw(60)<<"*PRESS3FORSEARCHOFFLIGHTS*"<<endl;
cout<<setw(60)<<"*NOWENTERYOURCHOICE:*"<<endl;
cout<<setw(60)<<"*************************************"<<endl;

cin>>menu_choice;

system("cls");

passenger*p1;

bookingb1;

internationali1;

locall1;

charback;

switch(menu_choice)

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

11/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT

case1:

p1=&l1;

p1>getdata();

cout<<"ToGoToMainMenuPressb"<<endl;

cin>>back;

system("CLS");

if(back=='b')

gotom;

else

cout<<"\n\n\n\n\n\n";

cout<<setw(40)<<"BYEFROMAIRRESERVATIONSYSTEM";

break;

case2:

p1=&i1;

p1>getdata();

cout<<"ToGoToMainMenuPressb"<<endl;

cin>>back;

system("CLS");

if(back=='b')

gotom;

else

cout<<"\n\n\n\n\n\n";

cout<<setw(40)<<"BYEFROMAIRRESERVATIONSYSTEM";

break;

case3:

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

12/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT

searchs1;

s1.searching();

cout<<"ToGoToMainMenuPressb"<<endl;

cin>>back;

system("CLS");

if(back=='b')

gotom;

else

cout<<"\n\n\n\n\n\n";

cout<<setw(40)<<"BYEFROMAIRRESERVATIONSYSTEM";

break;

}
}
};
voidmain()
{SetConsoleTitle(L"AIRWAYSRESERVATION");
system("color5f");
cout<<"\n\n\n\n\n\n\n\n\n\n\t\tWELCOMETOAIRWAYSRESERVATIONSYSTEM";
Sleep(2500);
system("cls");
cout<<"\n\n\n\n\n\n\n\t\tDevelopedby:";
Sleep(500);
cout<<"RanaJehanzeb";
Sleep(500);
cout<<"\n\n\n\t\tAfrazAhmadKhan";
Sleep(3000);
system("cls");
main1m1;
m1.getdata();
}
>
PostedbyJunaidHassanat08:24
Recommend this on Google

Labels:airlinebookingprojectc++,airlinereservationsystemc++,airwaysreservationsystem
projectinc++visualstudio

48comments:
Anonymous 4December2013at08:23
ThxMan,urlifesaver..:)
Reply
Replies
JunaidHassan

6December2013at02:08

thanxforyourappreciation

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

13/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
Reply

Anonymous 7December2013at19:57
itrytorunthiscodeusingcodeblockbutitsnotworking,helpmeplease...

Reply
Replies
afrazahmad 14April2014at02:41
trytorunthiscodeonvisualstudio.Itwillwork.
Reply

Anonymous 19February2014at06:18
isthisusingastackorlinearlist?
Reply

AidaNurdiena 23February2014at01:16
whystillerroron"usingnamespacestd"andcantrunthecoding
Reply
Replies
JunaidHassan

25February2014at22:42

Whichsoftwareuareusingforcoding?
ifuareusing'visualstudio'thenhopefullythiserrorwillberemoved.

junaidte14 28November2016at07:00
FreeDownloadCompleteWorkingCodeHere:

http://filesafer.com/file/36a72E
Reply

juliussupas 14March2014at07:46
canyoumakeaplanereservationwithdoublearraypls
Reply

juliussupas 14March2014at07:50
itcanusecancel,delete,insert,change,row
>row:x
reserve
cancel
ihopeyoucanhelpmethanksalot
Reply

JunaidHassan

14March2014at21:53

juliussupas,GiveSomeMoreDetails.
Reply

JoeHalpin 10May2014at10:06
Doyouliterallycopyandpastetheentirecode?IfsoI'vetriedonvisualstudio2010andit
comesupwitherrors
Reply
http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

14/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
Reply
Replies
Anonymous 27September2014at02:52
givesomedetailsabouterrors...!!itranperfectlyfineonmymachine...!!

junaidte14 28November2016at07:01
FreeDownloadCompleteWorkingCodeHere:

http://filesafer.com/file/36a72E
Reply

Anonymous 24June2014at06:11
canutellmeinthiscodetheoutputisgivenornotgiven
Reply
Replies
Anonymous 27September2014at03:02
outputdependsonwhatchoicesyoumadeduringtheexecutionofthecode.....!!

junaidte14 28November2016at07:02
Toseevideodemopleaseseethevideo:

https://www.youtube.com/watch?v=6QagfeZMi0E
Reply

Jc 26September2014at03:31
Sir thank you for this :) so happy bout your system but there's something not working the
seat and can you put some price for each destination? if its ok with you sir...thanks in
advance
Reply
Replies
Anonymous 27September2014at03:00
its easy bro..!! you can add it yourself...! where you select Class (
economy/business ) after that u can " cout " that for this destination economy
classpriceisthisandbusinessclasspriceisthis....!!
Reply

Jc 30September2014at10:15
howabouttheseatsir?howtoputseatingnumber?
Reply

samyakjain 15December2014at05:02
Thiscommenthasbeenremovedbytheauthor.
Reply

samyakjain 15December2014at05:03
SircouldyoutellmeforwhatreasonSetConsoleTitleisusedfor?
Reply

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

15/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT

SayanSaha 25November2015at10:37
its not running on borland turbo c++ 4.5...will it run on microsoft visual studio 2012
ultimate..???
Reply
Replies
junaidte14 28November2016at07:06
yes,itwillworkinvisualstudio2012.Fordemoyoucanvisitfollowingvideo:

https://www.youtube.com/watch?v=6QagfeZMi0E
Reply

JunaidHassan 25November2015at10:50
yesitshouldrunonvisualstudio.
Reply
Replies
SayanSaha 25November2015at19:50
icantopentheprojectviavisualstudioplzhelpmebyprovidinthesteps

junaidte14 28November2016at07:06
Fordemoyoucanvisitfollowingvideo:

https://www.youtube.com/watch?v=6QagfeZMi0E
Reply

SayanSaha 25November2015at11:16
okaythenletmeinstallit...willplzprovidemethestepswhattodoafterinstalltingvsstudio
2012..toruntheprogram...??
Reply

AnizaAnuar 9December2015at21:17
caniknow."system("cls")"whatthat'smean?
Reply

AnizaAnuar 9December2015at21:18
caniknow."system("cls")"whatthat'smean?
Reply

JadeGraham 28December2015at12:42
Thiscommenthasbeenremovedbyablogadministrator.
Reply

VarunP 25January2016at06:31
willthisworkonc++visualstudio
Reply
Replies
JunaidHassan 25January2016at06:51

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

16/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
yesitshould.
Reply

FizanZahidi 22February2016at22:58
candevc++readthiscoding???
Reply
Replies
JunaidHassan 23February2016at01:06
Ihaven'ttesteditindevc++.Butitwillworkinvisualstudio.
Reply

humna 13April2016at03:20
omg it worked on dev c++ you have done a great job very outstanding code it was very
helpfulformyfinalprojectsubmission:)
Reply
Replies
MudassarYaseen 19April2016at11:07
Wow..that'sformyfirstproject..YoushouldtrytodownloadCode::Blocks..that
maygiveyoubetterinterfaceandgoodresults)

Unknown 16July2016at10:03
devc++hasgivenmeerrorsonline750saying..voidmainmustreturnint.
Reply

MudassarYaseen 19April2016at11:03
SuchAniceWorkBro.
Reply
Replies
junaidte14 28November2016at07:09
Thanksfortheappreciation.
Reply

MudassarYaseen 19April2016at11:05
thishelpedmeinmyfirstproject)thankyou..
Reply
Replies
junaidte14 28November2016at07:11
Goodtoknowthatithelpedyou.Thanks
Reply

Anonymous 12May2016at17:48
whatisthedatastructureusedinthis
Reply
http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

17/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT
Reply

JUNAIDFAISAL 24September2016at00:08
Canany1plzaddtheabstractionplzplz..
Reply

Anonymous 20December2016at21:48
whytherehaveproblematline750..which"voidint()"haveerror?
Reply
Replies
junaidte14 21December2016at00:49
Downloadthecompleteworkingcodebelow:

https://sellfy.com/p/BDJB/
Reply

ManpreetSingh 15January2017at03:44
Thisfunctionsshowsalotsoferrorandwarning....
Reply
Replies
junaidte14 15January2017at04:43
Iknowthatthesefunctionsgiveerrors.Youcandownloadcompleteworkingcode
below:

https://sellfy.com/p/BDJB/
Reply

Enteryourcomment...

Commentas:

Publish

NewerPost

MadMesh(Google)

Signout

Notifyme

Preview

Home

OlderPost

Subscribeto:PostComments(Atom)

AwesomeInc.template.PoweredbyBlogger.

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

18/19

1/18/2017

C++Codes:AIRWAYSRESERVATIONSYSTEMPROJECT

http://cplus14.blogspot.in/2013/04/airwaysreservationsystemproject.html

19/19

You might also like