Answered step by step
Verified Expert Solution
Question
1 Approved Answer
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
Step: 1
Get Instant Access to Expert-Tailored Solutions
See step-by-step solutions with expert insights and AI powered tools for academic success
Step: 2
Step: 3
Ace Your Homework with AI
Get the answers you need in no time with our AI-driven, step-by-step assistance
Get Started