Question: Write a C++ program that do the following. Declare struct named Lecturer which has the following data members: LectID. Name. Age. Course. o ( int

Write a C++ program that do the following. Declare struct named Lecturer which has the following data members: LectID. Name. Age. Course. o ( int main function: o Define a dynamic array of type Lecturer named teachers, the size of array=3. o Initialize the values of data members in each array location as follow: teachers[0]: (LectID = 999; Name "Ahmad"; Age 35; Course "C++") teachers[1]: (LectID = 777; Name "Omar": Age = 28; Course = "Math") teachers[2]: (LectID 555; Name = "Ali"; Age = 33; Course = "C++") o Print the names of the lecturers who teaches C++ course
Step by Step Solution
There are 3 Steps involved in it
Get step-by-step solutions from verified subject matter experts
