I don't know what i'm missing, but I keep getting the error in the poly_tst file when trying to compile that says 'expected primary-expression before ']' token. According to my book I'm writing everything correctly.
Here is my class file function (poly.h)
void setcoeff(Term);
Here is my implementation file definition (poly.cpp)
void poly::setcoeff(Term Termholder[])
Here is my driver file function call (poly_tst.cpp)
polyinstance.setcoeff(Termholder[]);
Other notes is that I have a structure called Term that I created in the class that I made an array of 10 elements of called Termholder, and that my declared instance of a poly is called polyinstance