C++ project - Its a flight management system in C++ PDF

Title C++ project - Its a flight management system in C++
Author Momina Naveed
Course Data communications and comouter networks
Institution Fatima Jinnah Women University
Pages 5
File Size 38.4 KB
File Type PDF
Total Downloads 106
Total Views 156

Summary

Its a flight management system in C++...


Description

// programming.cpp : Defines the entry point for the console application. #include "stdafx.h" #include #include #include #include #include using namespace std; void reserve_seat(); void available_flights(); void cancel_seat(); void Quit_program(); void change_seat(); int numseats=20; int available; int seatarray; char l_name[30]; ofstream myfile; struct passenger { char name[30]; int pass_number; int cell_number; char address[40]; }pass; struct Seat { char pass_name[80]; int Available; }; struct Seat SeatArray[1][10]; void main() { int c; cout...


Similar Free PDFs