Hello friends,
struct datas{
int *a,*b;
} *name;
can you explain me how can i get the data at location pointed by *a and *b.
i tried,
name->*a = 10; // but this produces an error...
name->*b = 5; // but this produces an error...
Thanks...
H.Mohamed Thalib
struct datas{
int *a,*b;
} *name;
can you explain me how can i get the data at location pointed by *a and *b.
i tried,
name->*a = 10; // but this produces an error...
name->*b = 5; // but this produces an error...
Thanks...
H.Mohamed Thalib
Comment