i understood your anonymous struct
creating a data type from an anonymous name
but it not the case here:
i have a variable called "object"Code:typedef struct object{
int data;
struct object *left;
struct object *right;
}object;
but there is no anonimus struct
on the contrary i have the first name but not the alias second name
??

