pointers

I couldnt find any information on this topic.
If we have a structure say
struct TheData
{
double* Values;
unsigned long Length;
bool Valid;
};

is Values variable there a pointer? Or if i define later on
TheData Data;
what is Data.Values then? Data is taking the features of Values but it's not a pointer. What is it? thank you
Last edited on
Yes.

I don't understand what you mean, TheData::Values would be a pointer to a double always, no matter what.
Topic archived. No new replies allowed.