R
Ravikant
Hello,
Here I have written two types of declaring a structure.
Type:1
typedef struct node
{
1. U32 age;
2. char name[100];
3. struct node *rlink;
4. struct node *llink;
}Data_node;
Type:2
typedef struct
{
1. U32 age;
2. char name[100];
3. ..............;
4. ..............;
}Data_node;
Now I am not knowing what should be written in second type of
structure declaration at lines 3 and 4.
Please let me know about it.Thank you.
bye
Ravi
Here I have written two types of declaring a structure.
Type:1
typedef struct node
{
1. U32 age;
2. char name[100];
3. struct node *rlink;
4. struct node *llink;
}Data_node;
Type:2
typedef struct
{
1. U32 age;
2. char name[100];
3. ..............;
4. ..............;
}Data_node;
Now I am not knowing what should be written in second type of
structure declaration at lines 3 and 4.
Please let me know about it.Thank you.
bye
Ravi