AIRLINE RESERVATION SYSTEM
CODE: #include <string.h> #include <stdlib.h> #include <stdio.h> #include <conio.h> #include <windows.h> #include <ctype.h> #include <list> //double linked list #include <iostream> #include <fstream> //input output stream #include <string> // for the atoi conversion #include <sstream> // for the stringstream (used to convert into to string) #include <iomanip> // for organizing output into columns #include <vector> #include <stdlib.h> using namespace std; int loadingBar() { // 0 - black background, // A - Green Foreground system("color 0A"); // Initialize char for printing // loading bar char a = 177, b = 219; cout<<("\n\n\n\n"); cout<<("\n\n\n\n\t\t\t\t\t""Loading...\n\n"); cout<<("\t\t\t\t\t"); // Print initial loading bar for (int i = 0; i < 26; i++) pr...