Question:
(a) Describe what are dynamic pointers. Show their memory representations diagrammatically.
(b) Write short notes about pointers in arrays, paying attention on base address.
(c) The structure Student consists of three members (StudID, Name and AverageMark). Write a C++ program that will allow a user to enter the student ID, the name and the average mark of a student and then display these data on the screen. The display is done using a function Display. You should use a structure pointer and pass it in the function Display.