This lab explores the use of pointers in C++. Pointers will be used to dynamically allocate memory for Resistor class objects and access class member functions. Pointer arithmetic will be used to sort and access Resistor objects. The Resistor class from a previous lab will be modified to include a static member to track object counts. A test function will create a pointer array, allocate Resistor objects, access members through pointers, sort pointers using a passed function, and display sorted objects to check for memory leaks.