hi guys
i don't understand the following clause.
LargeStruct *s=(LargeStruct *)0;
here LargeStruct is defined as following:
struct LargeStruct
{
double bigd1[MAX_ELEMENTS];
double bigd2[MAX_ELEMENTS];
double bigd3[MAX_ELEMENTS];
double bigd4[MAX_ELEMENTS];
};
could you explain that for me?thanks.why not just:
LargeStruct * s?