Dear all
I have defined a struct's like this -
here p is pointer and p is member of structure s
we also defined a struct's like this -
we have pointer to a structure within structure itself
struct s *p; //I don't understand this statement exactly what it does in structure ?
can someone help me to understand that statement
I have defined a struct's like this -
Code:
struct s
{
int *p;
}
we also defined a struct's like this -
Code:
struct s
{
struct s *p; //I don't understand this statement exactly what it does in structure ?
}
struct s *p; //I don't understand this statement exactly what it does in structure ?
can someone help me to understand that statement