You are asked to create two classes:
a)Class Course with attributes course code and faculty code
b)Class student with attributes studentID, name and an object of course class
c)Write a member function for class student that will access and display a student’s ID and name and his/her course code and faculty code.
d)Then create a main function that will instantiate the class student and send the message to display student’s id and name and his/her course and faculty.