Suppose a structure


struc data{
double *aa;
int b;};
aa is an array.


double *abc
struct data *d1;
abc = d1->aa

can I assign abc as the above