So far I have a program that reads in two user's polynomials in an input operator. Then , mattering on the application I can add the two polynomials together or subtract them I also have to divide them. If the two polynomials each had the same degree this would be a simple problem but since it's all on user input it is a bit more difficult. Right now I read each polynomial into a dynamic array of integer the size of the given degree of the polynomial. For instance the polynomial of 2x^4+x^2+3x5 is stored with an integer degree = 4 being passed to the function as well as an array of coefficients :
int coeffs[4,0,1,3,5]. I am only asking for hints. I am completely lost and my teacher thought it would be a good idea to go to a conference a week before the project is due!!

Well anywho any help would be grand!