How do I create an array of pointers?

Student** db = new Student*[5];
// To allocate it statically:
Student* db[5];

Leave a Comment