if i have a class books having two struct
struct A{
B *ptr; //it says identifier undefined
};
struct B{
};
Both are defined in same class. is it possible to save the pointer of struct B in struct A as i have mentioned above? can anyone help plz?