I have a question I would appreciate it if you could clarify it. I am new to c and I encountered a part of the code in c which is as follows
#include <List.h>
LIST<P1*> p1
where the p1 is
class P1
{
public:
P1(int i, VECTOR xi);
Could you please tell me what p1*
means in LIST<P1*>
?
Is that a pointer?