Answer:
C++.
////////////////////////////////////////////////////////////////////////////////////////////
#include <iostream>
using namespace std;
struct Course {
int number;
int start_date;
int course_hours;
int lecturer_id;
};
struct Lecturer {
int Id;
int office_hours;
int *course_teaching;
};
struct Student {
int Id;
int *course_taken;
};
///////////////////////////////////////////////////
int main() {
Course c1;
Lecturer lecturer_1;
Student student_1;
return 0;
}
Step-by-step explanation:
"Then answer following questions 1, 2, and 3 based on these structures:"
Where are the questions 1, 2 and 3?