Visual C++ Program for the
Implementation of Bus Reservation
System | IT1253 - Software
Engineering Laboratory
[1:55 AM | 0 comments ]
Tweet
ABSTRACT:
The aim of our project is to develop a software for implementing “Bus Reservation System” using
VISUAL C++. The development of this particular project is to perform the formalities / operation in
Bus Reservation System. This project deals with the customer details in its process.
The customers are instructed in an easy way to feel comfortable with the processing.
REQUIREMENT ANALYSIS:
SOFTWARE REQUIREMENTS:
Front End : „C++‟ language.
Back End : File Management System (using Dat files)
Operating system: Any Operating System (Window or Linux)
HARDWARE REQUIREMENTS:
Processor : 3.06 GHZ operating speed.
Hard Disk : 80GB Capacity.
RAM : 256MB
Monitor : CRT 17‟
Mouse : OPTICAL
Keyboard : Alphanumeric keys.
The specified hardware requirements are the minimum requirements that are needed
to implement in the project.
FUNCTIONAL REQUIREMENTS:
As mentioned in the requirements, the Hospital Management system involves the following
function or process
Bus Reservation System consists of four modules. They are
Module 1: Insertion Module
Module 2: Deletion Module
Module 3: Display Module
Module 4: Exit
Insert Module:
In this module the user enters the detail of the patient.
Delete Module:
In this module the user deletes the detail of the patient.
Display Module:
This module display the detail of the patient.
Exit:
In this module the user can quit from the project.
SOURCE CODE:
#include<windows.h>
#include<sql.h>
#include<sqlext.h>
#include<stdio.h>
#define TEST_LEN 50
int main()
{
int c;
char ch='y';
SQLINTEGER totalseats,seatsrequired,passengerage;
SQLCHAR busname[TEST_LEN+1], passengername[TEST_LEN+1],
destination[TEST_LEN+1];
HENV hEnv=NULL;
HDBC hDBC=NULL;
HSTMT hStmt=NULL;
UCHAR szSqlStr[]="insert into
ninerow(busname,passengername,passengerage,destination,totalseats,seatsrequired)
values(?,?,?,?,?,?)";
UCHAR szSqlStr1[]="delete*from ninerow where passengername = ?";
UCHAR szSqlStr2[]="select*from ninerow";
UCHAR szDSN[SQL_MAX_DSN_LENGTH]="ninerow ";
UCHAR *szUID=NULL;
UCHAR *szPasswd=NULL;
UCHAR szModel1[128], szModel2[128], szModel3[128], szModel4[128], szModel5[128],
szModel6[128];
SDWORD cbModel1,cbModel2,cbModel3,cbModel4,cbModel5,cbModel6;
SDWORD cbtest=SQL_NTS;
RETCODE retcode;
do
{
printf("t BUS RESERVATION SYSTEMn");
printf("t 1.entry modulet2.cancellation modulet 3.display modulen");
printf("entr ur optionn");
scanf("%d",&c);
switch(c)
{
case 1:
printf("tEntry modulen");
printf("Enter the bus namen");
scanf("%s",&busname);
printf("entr te passenger namen");
scanf("%s",&passengername);
printf("Enter the passenger agen");
scanf("%d",&passengerage);
printf("destinationn");
scanf("%s",&destination);
printf("total seatsn");
scanf("%d",&totalseats);
printf("seats reqdn");
scanf("%d",&seatsrequired);
SQLAllocEnv(&hEnv);
SQLAllocConnect(hEnv,&hDBC);
retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS);
if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO)
{
retcode=SQLAllocStmt(hDBC,&hStmt);
retcode=SQLPrepare(hStmt,szSqlStr,sizeof(szSqlStr));
SQLBindParameter(hStmt,1,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,busna
me,0,&cbtest);
SQLBindParameter(hStmt,2,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,passe
ngername,0,&cbtest);
SQLBindParameter(hStmt,3,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&passengera
ge,0,&passengerage);
SQLBindParameter(hStmt,4,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,destin
ation,0,&cbtest);
SQLBindParameter(hStmt,5,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&totalseats,0
,&totalseats);
SQLBindParameter(hStmt,6,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&seatsrequir
ed,0,&seatsrequired);
retcode=SQLExecute(hStmt);
printf("record is insertedn");
}
break;
case 2:
printf("t cancellation modulen");
SQLAllocEnv(&hEnv);
SQLAllocConnect(hEnv,&hDBC);
retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS);
if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO)
{
retcode=SQLAllocStmt(hDBC,&hStmt);
retcode=SQLPrepare(hStmt,szSqlStr1,sizeof(szSqlStr1));
SQLBindParameter(hStmt,1,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,passe
ngername,0,&cbtest);
printf("entr the passenger namen");
scanf("%s",&passengername);
retcode=SQLExecute(hStmt);
printf("record is deln");
}
break;
case 3:
printf("tdisplay modulen");
SQLAllocEnv(&hEnv);
SQLAllocConnect(hEnv,&hDBC);
retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS);
if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO)
{
retcode=SQLAllocStmt(hDBC,&hStmt);
retcode=SQLPrepare(hStmt,szSqlStr2,sizeof(szSqlStr2));
retcode=SQLExecute(hStmt);
SQLBindCol(hStmt,1,SQL_C_CHAR,szModel1,sizeof(szModel1),&cbModel1);
SQLBindCol(hStmt,2,SQL_C_CHAR,szModel2,sizeof(szModel2),&cbModel2);
SQLBindCol(hStmt,3,SQL_C_CHAR,szModel3,sizeof(szModel3),&cbModel3);
SQLBindCol(hStmt,4,SQL_C_CHAR,szModel4,sizeof(szModel4),&cbModel4);
SQLBindCol(hStmt,5,SQL_C_CHAR,szModel5,sizeof(szModel5),&cbModel5);
SQLBindCol(hStmt,6,SQL_C_CHAR,szModel6,sizeof(szModel6),&cbModel6);
retcode=SQLFetch(hStmt);
printf("tbnametpnametpagetdestttotaltseatsnn");
while(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO)
{
printf("t%st%st%st%st%st%sn",szModel1,szModel2,szModel3,szModel4,szModel5,szModel6);
retcode=SQLFetch(hStmt);
}
}
break;
}
flushall();
printf("Do u wan to continue: ");
scanf("%s",&ch);
}while(ch=='y');
return 0;
}
CONCLUSION:
The project we have done here is “BUS RESERVATION SYSTEM” using C language.
In this project we have designed a software to implement the customer details that any user can
perform
it in a simple and a better way. This way of format helps us to have clear database.
NLINE BUS RESERVATION SYSTEM
ONLINE BUS RESERVATION SYSTEM
DATA STRUCTURES PROJECT.pptx (Size: 2.05 MB / Downloads: 16)
PROJECT PLAN:
1)Gathering the required information.
2) considering the rules which had given by faculty
3)Source – Net : Red bus.in/APS-RTC
4)Review-1
5)Project Submission
REVIEW 1:
INTRODUCTION
Our project and implimentation is to computerize traveling company to manage
data, so that all the transactions become fast and there should not be any error
in transaction like calculation mistake, bill generation and other things. It
replaces all the paper work. It keeps records of all bills also, giving to ensure
100% successful implementation of the computerized Bus reservation system.
Abstract:
The objective was two-fold - to ensure that the Customers don’t have to leave
the confines of their comfort to book a ticket, and to help them get a ticket
when they need it the most.
The internet was being voted as a medium people couldn’t do without. PC and
net penetration was increasing not only in urban areas, but also in rural India.
Also, people were getting used to booking tickets for travel using IRCTC and
private airline websites. So, why not buses?
Online system provides real time quotations, real time bus booking services for
round trips, multiple payment channels, cost comparison,last minute booking,
an in-house call center and even home delivery of tickets.
Online system provides real time quotations, real time bus booking services for
round trips, multiple payment channels, cost comparison,last minute booking,
an in-house call center and even home delivery of tickets.
Back-end database:
A back-end database is a database that is accessed by users indirectly through
an external application .
This is rather than by application programming stored within the database itself
or by low level manipulation of the data
A back-end database stores data but does not include end-user application
elements such as stored queries, forms, macros or reports.
Front end database:
1) Booking
2) Cancelling
3) From: To:
Date of journey:
Mode of payments
Hardware Requirements:
PC with core 2 duo or more proccessor
512 MB RAM or above.
180 GB Hard Disk or above.
Software Requirements:
Operating system : Windows XP (or) 7.
Dev c++ & Code blocks compilers.
Microsoft word and powerpoint
ALGORITHM:
1) Taking a class named as a.
2) Declaring the variables and arrays as busn[5], driver[10], arrival[5],
depart[5], from[10], to[10], seat[8][4][10].
3) And in public of the class we are giving member functions as
void install();
void allotment();
void empty();
void show();
void avail();
void position(int i);
4) And giving that maximum buses available are 10.
5) And now with respect to installing function we gave few options to enter in
the run time which will gives to enter the bus details from back end of the
system like bus no, Driver's name, Arrival time, Departure time, from and to .
6) And now with respect to allotment function we can allot seats for customer
according to their preferable seat numbers.
7)And the empty function shows that the seats are empty in the bus.
8) And the show function shows that the how many seats available in the given
bus.And which seats are all ready reserved in the bus.
Step 2:
Second step is that we have to install the number of busses that we have to
provide for customers and this is done by the back end system and in this
function we have to give details of the bus like bus num,Drivers name,Arrival
time ,departure time,From and To.

More Related Content

PDF
Console Application Using Visual C/C++
DOCX
Practical File of C Language
PPTX
Online Bus Reservation System
DOCX
Bus Ticket Management System Documentation
PPTX
Online bus reservation system
DOCX
Railway reservation(c++ project)
DOCX
Bus transportation query report
PPTX
PROJECT_PRSENTATION[1].pptx
Console Application Using Visual C/C++
Practical File of C Language
Online Bus Reservation System
Bus Ticket Management System Documentation
Online bus reservation system
Railway reservation(c++ project)
Bus transportation query report
PROJECT_PRSENTATION[1].pptx

Similar to Visual c (20)

DOCX
Railway reservation(c++ project)
PPTX
Online travel booikng
PPTX
Online Bus Service
PPTX
Online Bus Reservatiom System
PPTX
Online Bus Reservation System
PDF
Presentation of Turbo C++ || Railway Reservation System project || B.Sc. student
DOC
Online Bus Reservation
PPTX
bus scheduler
PPT
Vignan SIS Transport.ppt
PDF
Bus management system
PDF
Database Management System of Travel Co.
DOCX
Online bus ticket management
PPTX
Bus management system
PPTX
Vehicle Management System
PDF
Report on online bus management
PDF
project report on Gas booking system in c++
PDF
A PROJECT REPORT ON Online Bus Reservation System
PPTX
Bus management system.pptx
DOC
Ticket window & automation system
DOCX
computer science project on movie booking system
Railway reservation(c++ project)
Online travel booikng
Online Bus Service
Online Bus Reservatiom System
Online Bus Reservation System
Presentation of Turbo C++ || Railway Reservation System project || B.Sc. student
Online Bus Reservation
bus scheduler
Vignan SIS Transport.ppt
Bus management system
Database Management System of Travel Co.
Online bus ticket management
Bus management system
Vehicle Management System
Report on online bus management
project report on Gas booking system in c++
A PROJECT REPORT ON Online Bus Reservation System
Bus management system.pptx
Ticket window & automation system
computer science project on movie booking system
Ad

Recently uploaded (20)

PPTX
A powerpoint presentation on the Revised K-10 Science Shaping Paper
PDF
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
PDF
advance database management system book.pdf
PDF
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
PDF
International_Financial_Reporting_Standa.pdf
PDF
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
PDF
Race Reva University – Shaping Future Leaders in Artificial Intelligence
PDF
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
PDF
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
PDF
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
PPTX
Module on health assessment of CHN. pptx
PDF
My India Quiz Book_20210205121199924.pdf
PDF
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
PPTX
Virtual and Augmented Reality in Current Scenario
PDF
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 2).pdf
PDF
FORM 1 BIOLOGY MIND MAPS and their schemes
PPTX
Core Concepts of Personalized Learning and Virtual Learning Environments
PPTX
What’s under the hood: Parsing standardized learning content for AI
PDF
What if we spent less time fighting change, and more time building what’s rig...
PDF
Complications of Minimal Access-Surgery.pdf
A powerpoint presentation on the Revised K-10 Science Shaping Paper
David L Page_DCI Research Study Journey_how Methodology can inform one's prac...
advance database management system book.pdf
BP 704 T. NOVEL DRUG DELIVERY SYSTEMS (UNIT 1)
International_Financial_Reporting_Standa.pdf
LIFE & LIVING TRILOGY - PART - (2) THE PURPOSE OF LIFE.pdf
Race Reva University – Shaping Future Leaders in Artificial Intelligence
LIFE & LIVING TRILOGY - PART (3) REALITY & MYSTERY.pdf
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 1).pdf
FOISHS ANNUAL IMPLEMENTATION PLAN 2025.pdf
Module on health assessment of CHN. pptx
My India Quiz Book_20210205121199924.pdf
LIFE & LIVING TRILOGY- PART (1) WHO ARE WE.pdf
Virtual and Augmented Reality in Current Scenario
BP 505 T. PHARMACEUTICAL JURISPRUDENCE (UNIT 2).pdf
FORM 1 BIOLOGY MIND MAPS and their schemes
Core Concepts of Personalized Learning and Virtual Learning Environments
What’s under the hood: Parsing standardized learning content for AI
What if we spent less time fighting change, and more time building what’s rig...
Complications of Minimal Access-Surgery.pdf
Ad

Visual c

  • 1. Visual C++ Program for the Implementation of Bus Reservation System | IT1253 - Software Engineering Laboratory [1:55 AM | 0 comments ] Tweet ABSTRACT: The aim of our project is to develop a software for implementing “Bus Reservation System” using VISUAL C++. The development of this particular project is to perform the formalities / operation in Bus Reservation System. This project deals with the customer details in its process. The customers are instructed in an easy way to feel comfortable with the processing. REQUIREMENT ANALYSIS: SOFTWARE REQUIREMENTS: Front End : „C++‟ language. Back End : File Management System (using Dat files) Operating system: Any Operating System (Window or Linux) HARDWARE REQUIREMENTS: Processor : 3.06 GHZ operating speed. Hard Disk : 80GB Capacity. RAM : 256MB Monitor : CRT 17‟ Mouse : OPTICAL Keyboard : Alphanumeric keys. The specified hardware requirements are the minimum requirements that are needed to implement in the project. FUNCTIONAL REQUIREMENTS:
  • 2. As mentioned in the requirements, the Hospital Management system involves the following function or process Bus Reservation System consists of four modules. They are Module 1: Insertion Module Module 2: Deletion Module Module 3: Display Module Module 4: Exit Insert Module: In this module the user enters the detail of the patient. Delete Module: In this module the user deletes the detail of the patient. Display Module: This module display the detail of the patient. Exit: In this module the user can quit from the project. SOURCE CODE: #include<windows.h> #include<sql.h> #include<sqlext.h> #include<stdio.h> #define TEST_LEN 50 int main() { int c; char ch='y'; SQLINTEGER totalseats,seatsrequired,passengerage; SQLCHAR busname[TEST_LEN+1], passengername[TEST_LEN+1], destination[TEST_LEN+1]; HENV hEnv=NULL; HDBC hDBC=NULL; HSTMT hStmt=NULL; UCHAR szSqlStr[]="insert into
  • 3. ninerow(busname,passengername,passengerage,destination,totalseats,seatsrequired) values(?,?,?,?,?,?)"; UCHAR szSqlStr1[]="delete*from ninerow where passengername = ?"; UCHAR szSqlStr2[]="select*from ninerow"; UCHAR szDSN[SQL_MAX_DSN_LENGTH]="ninerow "; UCHAR *szUID=NULL; UCHAR *szPasswd=NULL; UCHAR szModel1[128], szModel2[128], szModel3[128], szModel4[128], szModel5[128], szModel6[128]; SDWORD cbModel1,cbModel2,cbModel3,cbModel4,cbModel5,cbModel6; SDWORD cbtest=SQL_NTS; RETCODE retcode; do { printf("t BUS RESERVATION SYSTEMn"); printf("t 1.entry modulet2.cancellation modulet 3.display modulen"); printf("entr ur optionn"); scanf("%d",&c); switch(c) { case 1: printf("tEntry modulen"); printf("Enter the bus namen"); scanf("%s",&busname); printf("entr te passenger namen"); scanf("%s",&passengername); printf("Enter the passenger agen"); scanf("%d",&passengerage); printf("destinationn"); scanf("%s",&destination); printf("total seatsn"); scanf("%d",&totalseats); printf("seats reqdn"); scanf("%d",&seatsrequired);
  • 4. SQLAllocEnv(&hEnv); SQLAllocConnect(hEnv,&hDBC); retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS); if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO) { retcode=SQLAllocStmt(hDBC,&hStmt); retcode=SQLPrepare(hStmt,szSqlStr,sizeof(szSqlStr)); SQLBindParameter(hStmt,1,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,busna me,0,&cbtest); SQLBindParameter(hStmt,2,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,passe ngername,0,&cbtest); SQLBindParameter(hStmt,3,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&passengera ge,0,&passengerage); SQLBindParameter(hStmt,4,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,destin ation,0,&cbtest); SQLBindParameter(hStmt,5,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&totalseats,0 ,&totalseats); SQLBindParameter(hStmt,6,SQL_PARAM_INPUT,SQL_C_LONG,SQL_INTEGER,1,0,&seatsrequir ed,0,&seatsrequired); retcode=SQLExecute(hStmt); printf("record is insertedn"); } break; case 2: printf("t cancellation modulen"); SQLAllocEnv(&hEnv); SQLAllocConnect(hEnv,&hDBC); retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS); if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO) { retcode=SQLAllocStmt(hDBC,&hStmt); retcode=SQLPrepare(hStmt,szSqlStr1,sizeof(szSqlStr1));
  • 5. SQLBindParameter(hStmt,1,SQL_PARAM_INPUT,SQL_C_CHAR,SQL_CHAR,TEST_LEN,0,passe ngername,0,&cbtest); printf("entr the passenger namen"); scanf("%s",&passengername); retcode=SQLExecute(hStmt); printf("record is deln"); } break; case 3: printf("tdisplay modulen"); SQLAllocEnv(&hEnv); SQLAllocConnect(hEnv,&hDBC); retcode=SQLConnect(hDBC,szDSN,SQL_NTS,szUID,SQL_NTS,szPasswd,SQL_NTS); if(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO) { retcode=SQLAllocStmt(hDBC,&hStmt); retcode=SQLPrepare(hStmt,szSqlStr2,sizeof(szSqlStr2)); retcode=SQLExecute(hStmt); SQLBindCol(hStmt,1,SQL_C_CHAR,szModel1,sizeof(szModel1),&cbModel1); SQLBindCol(hStmt,2,SQL_C_CHAR,szModel2,sizeof(szModel2),&cbModel2); SQLBindCol(hStmt,3,SQL_C_CHAR,szModel3,sizeof(szModel3),&cbModel3); SQLBindCol(hStmt,4,SQL_C_CHAR,szModel4,sizeof(szModel4),&cbModel4); SQLBindCol(hStmt,5,SQL_C_CHAR,szModel5,sizeof(szModel5),&cbModel5); SQLBindCol(hStmt,6,SQL_C_CHAR,szModel6,sizeof(szModel6),&cbModel6); retcode=SQLFetch(hStmt); printf("tbnametpnametpagetdestttotaltseatsnn"); while(retcode==SQL_SUCCESS||retcode==SQL_SUCCESS_WITH_INFO) { printf("t%st%st%st%st%st%sn",szModel1,szModel2,szModel3,szModel4,szModel5,szModel6); retcode=SQLFetch(hStmt); } } break;
  • 6. } flushall(); printf("Do u wan to continue: "); scanf("%s",&ch); }while(ch=='y'); return 0; } CONCLUSION: The project we have done here is “BUS RESERVATION SYSTEM” using C language. In this project we have designed a software to implement the customer details that any user can perform it in a simple and a better way. This way of format helps us to have clear database.
  • 7. NLINE BUS RESERVATION SYSTEM ONLINE BUS RESERVATION SYSTEM DATA STRUCTURES PROJECT.pptx (Size: 2.05 MB / Downloads: 16) PROJECT PLAN: 1)Gathering the required information. 2) considering the rules which had given by faculty 3)Source – Net : Red bus.in/APS-RTC 4)Review-1 5)Project Submission REVIEW 1: INTRODUCTION Our project and implimentation is to computerize traveling company to manage data, so that all the transactions become fast and there should not be any error in transaction like calculation mistake, bill generation and other things. It replaces all the paper work. It keeps records of all bills also, giving to ensure 100% successful implementation of the computerized Bus reservation system. Abstract: The objective was two-fold - to ensure that the Customers don’t have to leave the confines of their comfort to book a ticket, and to help them get a ticket when they need it the most. The internet was being voted as a medium people couldn’t do without. PC and net penetration was increasing not only in urban areas, but also in rural India. Also, people were getting used to booking tickets for travel using IRCTC and private airline websites. So, why not buses? Online system provides real time quotations, real time bus booking services for round trips, multiple payment channels, cost comparison,last minute booking, an in-house call center and even home delivery of tickets. Online system provides real time quotations, real time bus booking services for round trips, multiple payment channels, cost comparison,last minute booking, an in-house call center and even home delivery of tickets. Back-end database: A back-end database is a database that is accessed by users indirectly through an external application . This is rather than by application programming stored within the database itself or by low level manipulation of the data A back-end database stores data but does not include end-user application elements such as stored queries, forms, macros or reports. Front end database: 1) Booking
  • 8. 2) Cancelling 3) From: To: Date of journey: Mode of payments Hardware Requirements: PC with core 2 duo or more proccessor 512 MB RAM or above. 180 GB Hard Disk or above. Software Requirements: Operating system : Windows XP (or) 7. Dev c++ & Code blocks compilers. Microsoft word and powerpoint ALGORITHM: 1) Taking a class named as a. 2) Declaring the variables and arrays as busn[5], driver[10], arrival[5], depart[5], from[10], to[10], seat[8][4][10]. 3) And in public of the class we are giving member functions as void install(); void allotment(); void empty(); void show(); void avail(); void position(int i); 4) And giving that maximum buses available are 10. 5) And now with respect to installing function we gave few options to enter in the run time which will gives to enter the bus details from back end of the system like bus no, Driver's name, Arrival time, Departure time, from and to . 6) And now with respect to allotment function we can allot seats for customer according to their preferable seat numbers. 7)And the empty function shows that the seats are empty in the bus. 8) And the show function shows that the how many seats available in the given bus.And which seats are all ready reserved in the bus. Step 2: Second step is that we have to install the number of busses that we have to provide for customers and this is done by the back end system and in this function we have to give details of the bus like bus num,Drivers name,Arrival time ,departure time,From and To.