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