Point to a Pointer in a Structure

Hello,

I am brand new to this site. I hope someone could help me out with this problem. I am having problems with my code and dont know where to go from here. I am trying to have a pointer, STUDENTS* std, to another pointer. But this second pointer is already in my Structure called STUDENTS. The second pointer is called, SCORES* Scores.

I posted the whole program here:
http://www.filefactory.com/file/c269f3d/n/big_project.zip

Thank You
But if std is of type 'STUDENTS *', then it can only point to a STUDENTS or to an array of such objects. It can't point to a pointer.
The pointer that is a member of STUDENTS is still accessible from std, though: std->Scores
I am still having problems getting my scores entered into the pointer in my structure.

This is the error I am getting:

IntelliSense: no operator "=" matches these operands

The code with the problem is:

std->Scores[i] = grade;
Topic archived. No new replies allowed.