I have a class cyclotomic{public: int p; int *cyclonumber;
??? createZetas(void} Obviously there is more to the class. For
intance when a class is constructed, the cyclonumber pointer is newed into an array of size p-1. Everything is public. The function createZetas is supposed to create and return a newed array of new cyclotomic classes the i'th term of cyclonumber is to be 1 and the rest 0. That part is easy, but creating the new array of pointers to new classes is not coming along no matter what I do.
I will greatly appreciate any help to improve my apalling lack of knowledge.