Hi, I'm new here and need some help on beginning my program. I've read the thread on homework help and am not here asking for someone to do my program.
I have an assignment which I basically have to take in polynomials from the user and add/multiply them. I decided to use a linked list with this type declaration:
struct ATerm
{
int Coefficient;
int Exponent;
ATerm *Next;
}
typedef ATerm *Polynomial
my question is how to store each polynomial the user input's. I'm not allowed to use the string functions which would make this problem trivial. Any ideas?