Kashipara.com is a community of ONE million programmers and students, Just like you, Helping each other.Join them. It only takes a minute: Sign Up
Job Resume TemplateRailway tickets booking project features and function requirement. Share C/C++ Project ideas and topics with us. Grate and many C/C++ project ideas and topics . Here some C/C++ project ideas for research paper. Here large collection of C/C++ project with source code and database. We many idea to development application like mobile application,desktop software application,web application development. You can find more project topics and ideas on C/C++. Development ideas on Railway tickets booking. You can find Top Downloaded C/C++ projects here. Many project available to download with C/C++ source code and database. Free download Railway tickets booking project synopsis available.
Free download Railway tickets booking mini and major C/C++ project source code. Download simple learning C/C++ project source code with diagram and documentations. More project with source code related to latest C/C++ projects here.
| Publish by | kali krishna |
| Project Name | Railway tickets booking |
| Upload Date | November 9, 2019 |
| Platform | C/C++ |
| Programming Language | c++ |
| Database | class |
| Front end | |
| Back end | |
| Project Type | desktop Application |
| View | 1091 |
good project for beginners #include<ctype.h> #include<conio.h> #include<fstream.h> #include<string.h> #include<process.h> #include<stdio.h> #include<dos.h> //********************************************** ************************** //STRUCTURE CONTAINING VARIABLES FOR RAILWAY RESERVATION. //********************************************** ************************** struct railway { char name[20],sex,from[20],rstatus[2],nat[10]; int passno,age,des; }; //********************************************** ************************** //CLASS TO CONTROL ALL THE FUNCTIONS RELATE TO RAILWAY RESERVATION. //********************************************** ************************** class train { private: railway r; void getdata(int); void add(); void list(); void pinfo(); void cancel(); void mod(); char select(); public: void srs1(); void srs(); }; //********************************************** ************************** //FUNCTION NAME:SRS //DESCRIPTION:THIS FUNCTION OPENS UP THE MAIN MENU // AND CALLS OTHER RELATED FUNCTIONS. //********************************************** ************************** void train::srs1() { do { clrscr(); char choice; gotoxy(30,2); cout<<"******MAIN MENU****** "; cout<<endl; gotoxy(30,7); cout<<" 1-NEW RESERVATION "; gotoxy(30,9); cout<<" 2-PASSENGER INFO. "; gotoxy(30,11); cout<<" 3-MODIFY RECORD "; gotoxy(30,13); cout<<" 4-DISPLAY LIST "; gotoxy(30,15); cout<<" 5-CANCELLATION "; gotoxy(30,17); cout<<" 6-QUIT TO SYSTEM "; gotoxy(34,22); cout<<"ENTER CHOICE:"; choice=getch(); choice=toupper(choice); switch(choice) { case '1':add(); break; case '2':pinfo(); break; case '3':mod(); break; case '4':list(); break; case '5':cancel(); break; case '6':exit(1); default:cout<<"\a"; } }while(1); } char train::select() { char choice; do { clrscr(); gotoxy(25,5); cout<<"SELECT A "; gotoxy(23,6); gotoxy(27,9); cout<<"1-SHATABADI\n"; gotoxy(27,10); cout<<"2-KOLKATA - MAIL\n"; gotoxy(27,11); cout<<"3-SUPERFAST EXPRESS\n"; gotoxy(27,12); cout<<"4-RAWALPINDI EXPRESS\n"; gotoxy(27,13); cout<<"5-RAJDHANI EXPRESS\n"; gotoxy(27,15); cout<<"R-RETURN TO MAIN MENU\n"; gotoxy(27,16); cout<<"Q-QUIT TO SYSTEM\n"; gotoxy(30,20); cout<<"ENTER CHOICE:"; choice=getch(); choice=toupper(choice); switch(choice) { case '1':return(choice); case '2':return(choice); case '3':return(choice); case '4':return (choice); case '5':return(choice); case 'R':srs1(); case 'Q':exit(1); default:cout<<"\a" ; select(); } }while(1); } void train::getdata(int p) { char ch; cout<<"\n ROUTES ARE:"; cout<<"\n 1.DELHI-JAMMU-DELHI"; cout<<"\n 2.DELHI-KANYAKUMARI-DELHI"; cout<<"\n 3.DELHI-BOMBAY-DELHI"; cout<<"\n 4.DELHI-KOLKATA-DELHI"; cout<<"\n PLEASE SELECT YOUR ROUTE:"; cin>>r.des; clrscr(); r.passno=p; gotoxy(20,7); cout<<"PASSENGER NO.:"; cout<<r.passno; gotoxy(20,9); cout<<"ENTER NAME OF PASSENGER:"; gets(r.name); gotoxy(20,10); cout<<"ENTER SEX OF PASSENGER(M/F):"; cin>>r.sex; while(1) { gotoxy(34,12); cout<<" "; if(r.sex=='m'||r.sex=='M'||r.sex=='f'||r.sex =='F') break; gotoxy(34,12); cout<<"ENTER M or F"<<endl; getch(); gotoxy(34,12); cout<<" "; gotoxy(20,10); cout<<" "; gotoxy(20,10); cout<<"ENTER SEX OF PASSENGER(M/F):"; cin>>r.sex; } gotoxy(20,11); cout<<"ENTER AGE OF PASSENGER:"; cin>>r.age; while(1) { gotoxy(34,12); cout<<" "; if(r.age>=4 && r.age<=100) break; gotoxy(34,12); cout<<"ENTER CORRECT AGE"; getch(); gotoxy(34,12); cout<<" "; gotoxy(20,11); cout<<" "; gotoxy(20,11); cout<<"ENTER AGE OF PASSENGER :"; cin>>r.age; } gotoxy(20,12); cout<<"ENTER THE NATIONALITY :"; gets(r.nat); gotoxy(20,13); cout<<"STARTING POINT :"; cout<<"DELHI\n"; gotoxy(20,14); cout<<"DESTINATION POINT :"; switch(r.des) { case 1:cout<<"JAMMU\n"; break; case 2:cout<<"KANYAKUMARI\n"; break; case 3:cout<<"BOMBAY\n"; break; case 4:cout<<"KOLKATA\n"; break; } gotoxy(20,16); cout<<"TICKET NO. :"; cout<<r.passno; } void train::add() { train temp; int t; fstream trains; char c,filename[8],choice1,choice2; do { t=0; c=select(); switch(c) { case '1':strcpy(filename,"IND.DAT"); break; case '2':strcpy(filename,"BRIT.DAT"); break; case '3':strcpy(filename,"GULF.DAT"); break; case '4':strcpy(filename,"UNIT.DAT"); break; case '5':strcpy(filename,"LUF.DAT"); break; } trains.open(filename,ios::in|ios::binary|ios::ap p); while(trains.read((char*)&temp,sizeof(railway))) t++; trains.close(); do { if(t<5) strcpy(r.rstatus,"C"); else strcpy(r.rstatus,"W"); if(t<8) { t++; clrscr(); gotoxy(25,3); cout<<"ADDITION OF NEW PASSENGER"; gotoxy(23,4); cout<<"IIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIIII" ; gotoxy(20,6); cout<<"TRAIN NAME :"; switch(c) { case '1':cout<<"SHATABADI"; break; case '2':cout<<"KOLKATA - MAIL"; break; case '3':cout<<"SUPERFAST EXPRES"; break; case '4':cout<<"RAWALPINDI EXPRES "; break; case '5':cout<<"RAJDHANI EXPRESS"; break; } getdata(t); gotoxy(20,16); cout<<"STATUS :"; if(t<5) cout<<"\aCONFIRMED"; else cout<<"\aWAITING LIST"; getch(); trains.open(filename,ios::out|ios::binary|io s::app); trains.write((char*)&r,sizeof(railway)); trains.close(); } else { clrscr(); gotoxy(22,20); cout<<"NO MORE TICKETS AVAILABLE FOR THIS TRAIN\a"; getch(); } gotoxy(12,25); cout<<"\aDO YOU WISH TO MAKE ANY MORE RESERVATION ON THIS TRAIN(Y/N)"; do { choice1=getch() ; choice1=toupper(choice1) ; } while((choice1!='Y')&&(choice1!='N')) ; } while(choice1=='Y') ; gotoxy(12,25); cout<<"DO YOU WISH TO MAKE ANY MORE RESERVATION ON ANY TRAIN(Y/N)"; do { choice2=getch(); choice2=toupper(choice2); } while((choice2!='Y')&&(choice2!='N')); } while(choice2=='Y'); } void train::pinfo() { fstream trains; int p,k=0; char c,filename[8]; c=select(); switch(c) { case '1':strcpy(filename,"IND.DAT"); break; case '2':strcpy(filename,"BRIT.DAT"); break; case '3':strcpy(filename,"GULF.DAT"); break; case '4':strcpy(filename,"UNIT.DAT"); break; case '5':strcpy(filename,"LUF.DAT"); break; } clrscr(); gotoxy(10,3); cout<<"ENTER PASSENGER NUMBER :"; cin>>p; trains.open(filename,ios::in|ios::binary|ios ::app); while(trains.read((char *)&r,sizeof(railway))) { k++; } trains.close(); if(p>k) { clrscr(); gotoxy(25,25); cout<<"RECORD NOT FOUND.........\a"; getch(); } else { trains.open(filename,ios::in|ios::binary|ios::ap p); while(trains.read((char *)&r,sizeof(railway))) { if(r.passno==p) { clrscr(); gotoxy(27,3); cout<<"PASSENGER INFORMATION"; gotoxy(23,6); cout<<"TRAIN NAME :"; switch(c) { case '1':cout<<"SHATABADI"; break; case '2':cout<<"KOLKATA - MAIL"; break; case '3':cout<<"SUPERFAST EXPRES"; break; case '4':cout<<"RAWALPINDI EXPRES "; break; case '5':cout<<"RAJDHANI EXPRESS"; break; } gotoxy(23,7); cout<<"PASSENGER NO. :"; cout<<r.passno; gotoxy(23,9); cout<<"NAME OF PASSENGER :"; cout<<r.name; gotoxy(23,10); cout<<"SEX OF PASSENGER :"; cout<<r.sex; gotoxy(23,11); cout<<"AGE OF PASSENGER :"; cout<<r.age; gotoxy(23,12); cout<<"NATIONALITY :"; cout<<r.nat; gotoxy(23,13); cout<<"STARTING POINT :"; cout<<"DELHI"; gotoxy(23,14); cout<<"DESTINATION :"; switch(r.des) { case 1:cout<<"JAMMU\n"; break; case 2:cout<<"KANYAKUMARI\n"; break; case 3:cout<<"BOMBAY\n"; break; case 4:cout<<"KOLKATA\n"; break; } gotoxy(23,16); cout<<"TICKET NO. :"; cout<<r.passno; gotoxy(23,17); cout<<"STATUS :"; if(strcmp(r.rstatus,"W")==0) cout<<"WAITING LIST"; else cout<<"CONFIRMED"; gotoxy(5,25); cout<<"PRESS ANY KEY TO CONTINUE...."; getch(); } } trains.close(); } } void train::list() { fstream trains; char c,filename[8]; c=select(); switch(c) { case '1': strcpy(filename,"IND.DAT"); break; case '2': strcpy(filename,"BRIT.DAT"); break; case '3': strcpy(filename,"GULF.DAT"); break; case '4': strcpy(filename,"UNIT.DAT"); break; case '5': strcpy(filename,"LUF.DAT"); break; } clrscr(); gotoxy(29,3); cout<<"PASSENGER LIST"; gotoxy(27,4); cout<<"IIIIIIIIIIIIIIIIIIIIIIIIIIIIII"; gotoxy(33,5); switch(c) { case '1':cout<<"SHATABADI"; break; case '2':cout<<"KOLKATA - MAIL";break; case '3':cout<<"SUPERFAST EXPRES"; break; case '4':cout<<"RAWALPINDI EXPRES "; break; case '5':cout<<"RAJDHANI EXPRESS"; break; } gotoxy(3,7); cout<<"PASSENGER NUMBER"; gotoxy(27,7); cout<<"PASSENGER-NAME"; gotoxy(62,7); cout<<"RESERVATION STATUS"; int i=9; trains.open(filename,ios::in|ios::binary); while(trains.read((char *)&r,sizeof(railway))) { gotoxy(10,i); cout<<r.passno; gotoxy(30,i); cout<<r.name; gotoxy(66,i); if (strcmp(r.rstatus,"C")==0) cout<<"CONFIRMED"; else cout<<"WAITING LIST"; i++; } gotoxy(25,25); cout<<"\aPRESS ANY KEY YO CONTINUE........"; getch(); trains.close(); } void train::mod() { ifstream fin; ofstream fout; railway t; int p,flag; char c,filename[8]; c=select(); switch(c) { case '1':strcpy(filename,"IND.DAT"); break; case '2':strcpy(filename,"BRIT.DAT"); break; case '3':strcpy(filename,"GULF.DAT"); break; case '4':strcpy(filename,"UNIT.DAT"); break; case '5':strcpy(filename,"LUF.DAT"); break; } clrscr(); int found=0; gotoxy(10,3); cout<<"ENTER PASSENGER NUMBER :"; cin>>p; fin.open(filename); fout.open("backup.dat",ios::binary); clrscr(); gotoxy(25,3); cout<<"MODIFICATION OF PASSENGER"; gotoxy(23,4); cout<<" IIIIIIIIIIIIIIIIIIIIIIIIIIIII\n\n\n\n "; while(fin.read((char *)&t,sizeof(railway))) { if(t.passno==p) { found=1; cout<<"Record found\n\n"; cout<<"Enter New Name : ";gets(t.name); cout<<"Enter Sex : "; cin>>t.sex; cout<<"Enter Nationality: "; gets(t.nat); cout<<"Enter Age: "; cin>>t.age; fout.write((char *)&t,sizeof(t)); } else { fout.write((char*)&t,sizeof(t)); } } if(found==0) {cout<<"\n\n!!Record not found"; getch(); return;} fin.close(); fout.close(); remove(filename); rename("backup.dat",filename); getch(); clrscr(); gotoxy(20,25); cout<<"\aTICKET DETAILS SUCCESSFULLY MODIFIED....."; getch(); } void train::cancel() { fstream trains,trains1; int p,k=0; char c,filename[8]; c=select(); switch(c) { case '1':strcpy(filename,"IND.DAT"); break; case '2':strcpy(filename,"BRIT.DAT"); break; case '3':strcpy(filename,"GULF.DAT"); break; case '4':strcpy(filename,"UNIT.DAT"); break; case '5':strcpy(filename,"LUF.DAT"); break; } clrscr(); gotoxy(10,3); cout<<"ENTER PASSENGER NUMBER : "; cin>>p; trains.open(filename,ios::in|ios::binary|ios::ap p); while(trains.read((char *)&r,sizeof(railway))) { k++; } trains.close(); if(p>k) { clrscr(); gotoxy(25,24); cout<<"\aPASSENGER NUMBER DOES NOT EXIST"; getch(); return; } clrscr(); gotoxy(25,3); cout<<"CANCELLATION OF TICKET"; trains.open(filename,ios::in|ios::binary); trains1.open("TEMP.DAT",ios::out|ios::binary); while (trains.read((char *)&r,sizeof(railway))) { if(r.passno>p) { r.passno--; trains1.write((char *)&r,sizeof(railway)); } else if (r.passno<p) trains1.write((char *)&r,sizeof(railway)); } trains.close(); trains1.close(); remove(filename); rename("TEMP.DAT",filename); trains.open(filename,ios::in|ios::binary); trains1.open("TEMP.DAT",ios::out|ios::binary); while (trains.read((char *)&r,sizeof(railway))) { if(r.passno<=5) strcpy(r.rstatus,"C"); else strcpy(r.rstatus,"W"); trains1.write((char *)&r,sizeof(railway)); } trains.close(); trains1.close(); remove(filename); rename("TEMP.DAT",filename); clrscr(); gotoxy(25,24); cout<<"\a TICKET SUCCESSFULLY CANCELLED........"; getch(); } void train::srs() { clrscr(); cout<<"\n\n\n\t ---------R----------"; delay(125); cout<<"\n\n\n\t -------- A---------"; delay(125); cout<<"\n\n\n\t ---------I----------"; delay(25); cout<<"\n\n\n\t ----------L---------"; delay(125); cout<<"\n\n\n\t ----------W---------"; delay(125); cout<<"\n\n\n\t ----------A---------"; delay(125); cout<<"\n\n\n\t ----------Y---------"; delay(425); } //********************************************** ************************** // Main Function //********************************************** ************************** void main() { train obj; obj.srs(); obj.srs1(); }
free download hostel management system project in c++ source code. Room allotment to the student. Online vacancy position of the room. Student leave registers. Monitoring Visitors and Guest register. Provision for monitoring the student hostel activities. ... [ Download Source Code ]
This is project for book shop kipper. In this project shop kipper handle various operation of stock and selling books. Use of this project shopkeeper help reduce manual works. ... [ Download Source Code ]
A Project of Online Voting System. Build using C(login, logout). Login details are saved in a notepad file which is done using file handling in c. Every Feature is Available like Traditional Voting System ... [ Download Source Code ]
FEATURES AND FUNCTION: 1.INTERNET BANKING IS LOGIN TO THE PASSWORD THE SPECIFIC CUSTOMER 2.THE ACCOUNT BALENCE IS SHOW 3.AND THE MONEY TRANFER TO YOUR ACCOUNT TO OTHER 4.TRANFER MONEY TO YOUR USERNAME ... [ Download Source Code ]
1.THIS SOFTWARE IS BANK MANEGMENT SYSTEM AND ATM FEACTURE IS USING IN C/C++ PROGRAMMING 2.THE PROGRAM IS WORKING FILE HADING ALSO THE RECORD TO THE BANK CUSTEMER IN RECORD FILE 3.THE MAIN FEATURE IS VERY STORNG AND VERY HELPING STURCTURE THUS,THE ALL BANK CUSTERMER LIST IS SHOW IS FEACTURE ... [ Download Source Code ]