C++ Project – Air Ticket Reservation

 #include #include #include //STRUCTURE typedef struct{ char flightNo[5]; char date[12]; char time[6]; char gate[3]; }Flight; Flight flight={“YZ22″,”10-12-2008″,”20:30″,”RT”}; typedef struct{ char name[30]; char booking_ID[3]; int seats; }Seat; Seat choice[4][5]; void displaymenu(); void booking(); void seat(); void ticket(); void records(); void looping(); void exit_(); //Variables int selection; int i; int j; int seats_num[20]={0}; int booking_ID=100; int seatsAvailable=20;…… Continue reading C++ Project – Air Ticket Reservation

C++ Project – Tic Tac Toe Game

//Tic Tac Toe #include #include #include #include #include #define max 100 int draw=0,winner=0; class tic { private : char a[max],a1[max],a2[max],a3[max],b[max],b1[max],b2[max], b3[max],c[max],c1[max],c2[max],c3[max],d[max],d1[max],d2[max], d3[max],e[max],e1[max],e2[max],e3[max],f[max],f1[max],f2[max], f3[max],g[max],g1[max],g2[max],g3[max],h[max],h1[max],h2[max], h3[max],i[max],i1[max],i2[max],i3[max],j[max],j1[max],j2[max], j3[max],k[max],k1[max],k2[max],k3[max],l[max],l1[max],l2[max], l3[max],m[max],m1[max],m2[max],m3[max],n[max],n1[max],n2[max], n3[max],x[max],x1[max],x2[max],x3[max],y[max],y1[max],y2[max], y3[max],z[max],z1[max],z2[max],z3[max],za[max],za1[max], za2[max],za3[max],az[max]; int o,p,q,r,s,t,u,v,w,o1,p1,q1,r1,s1,t1,u1,v1,w1; char xa[3][3]; int player,row,col,count; public : tic(); void introduction(); void position(); void question(int, int, int); void game(); void sorry(); void check(); } //************************************************ //…… Continue reading C++ Project – Tic Tac Toe Game

C++ Project – Salary Management

//********************************************************** // PROJECT SALARY MANAGMENT //********************************************************** //********************************************************** // INCLUDED HEADER FILES //********************************************************** #include #include #include #include #include #include #include #include //********************************************************** // THIS CLASS CONTAINS ALL THE DRAWING FUNCTIONS //********************************************************** class LINES { public : void LINE_HOR(int, int, int, char) ; void LINE_VER(int, int, int, char) ; void BOX(int,int,int,int,char) ; void CLEARUP(void) ; void CLEARDOWN(void) ; }…… Continue reading C++ Project – Salary Management

C++ Project – Railway Reservation System

//Railway Reservation System #include #include #include #include #include #include #include #include char f[10]=”f”; char s[10]=”s”; int addr,ad,flag,f1,d,m,i,amt; float tamt; class login { public: char id[100]; char pass[100]; char *password; void getid() { cout<<“Enter your id:”;gets(id); password=getpass(“Enter the password:”); // password is : ‘12345678’ strcpy(pass,password); } void displayid() { cout<<“Id:”;puts(id); cout<<“Password:”;puts(pass); } }; class detail {…… Continue reading C++ Project – Railway Reservation System

C++ Project – Quiz Program

//Quiz #include #include #include #include #include #include #include #include class quiz2 { public: void ques();   void set1();   void ques1();  void ques2(); void ques3();  void ques4();  void ques5();  void ques6(); void ques7();  void ques8();  void ques9();  void ques10(); void ques11(); void ques12(); void ques13(); void ques14(); void ques15(); void ques16(); void fifty1(); void fifty2(); void fifty3();…… Continue reading C++ Project – Quiz Program

C++ Project – Periodic Table

/*Program Title : Periodic Table*/ #include #include #include #include #include #include #include #include #include void element(int,int); void welcome_screen() { clrscr(); for(int x=50;x>=20;x–) { delay(160); gotoxy(x,12); cputs(”  P R O J E C T   “); gotoxy(x,14); cputs(”  D E V E L O P E D  B Y  :  “); gotoxy(x,16); cputs(“unlimitedsourcecodes.blogspot.com *”); } gotoxy(x,24); cputs(“Press…… Continue reading C++ Project – Periodic Table

C++ Project – Payroll Management Software

//Payroll Management Software #include #include #include #include #include #include #include #include struct roll { char na[20],des[20]; int co; float sal,tax,hra,gr,da,np; }oll; fstream pay; char c; int l; char choice; void dev() { clrscr(); for(int x=50;x>=20;x–) { textcolor(WHITE+LIGHTGRAY); delay(160); gotoxy(x,12); cputs(”  P R O J E C T   “); gotoxy(x,14); cputs(”  D E V E L…… Continue reading C++ Project – Payroll Management Software

C++ Project – Music Shop

//C++ Project on Music Shop // Declaration of header files #include #include #include #include #include #include #include #include #include #include #include typedef char option[15]; const int ROW = 10, COL = 10; int scan;    // To hold the special characters for moving the prompt in menu int ascii; // To display the main menu options…… Continue reading C++ Project – Music Shop

C++ Project – LIC Database Management Software

//////*******************************************************\\\\\\ //////**** ¯     LIC DATABASE MANAGEMENT SOFTWARE     ®  ****\\\\\\ //////*******************************************************\\\\\\ //////Developed By :- http://www.unlimitedsourcecodes.blogspot.com  \\\\\\ ////// Open Source is The Best  \\\\\ /*          HEADER FILES          */ #include #include #include #include #include #include #include #include #include /*      STRUCTURE DEFINITIONS      …… Continue reading C++ Project – LIC Database Management Software