Question: C++ program Create a class called Passenger that represents passengers of an airline company. A passenger is defined using the following information: - Passenger ID
C++ program
Create a class called Passenger that represents passengers of an airline company. A passenger is defined using the following information:
- Passenger ID (int)
- Name (string)
- Address (string)
- Tel (string)
- Date of birth
Provide the following functions:
- A constructor that initializes the data members and provides default arguments.
- Access methods that return the value of the data members.
- Functions that change the address, tel., and date of birth of a passenger.
- A function that prints information about a passenger.
Test your class by dynamically creating two Passenger objects and calling on them the above functions.
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
