שפת C/ניהול זיכרון דינאמי: הבדלים בין גרסאות בדף

תוכן שנמחק תוכן שנוסף
שורה 346:
int main()
{
struct link_
{
int data;
typedef struct link_ link*next;
};
 
typedef struct link_ *nextlink;
int c;
 
};
 
 
typedef struct link_ link;
int c;
 
link *head = NULL;