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

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