, ++ C C, , struct . , , // .. , . , ++, C ++ .
C struct . , β 2: C:
struct node
{
int data;
node *next;
};
struct node
{
int data;
struct node *next;
};
C, struct typedef , :
typedef struct node_t
{
int data;
struct node *next;
} node;
node struct . ++ typedef struct class , struct class .