Creating a list - examples

Nasza ocena:

3
Wyświetleń: 448
Komentarze: 0
Notatek.pl

Pobierz ten dokument za darmo

Podgląd dokumentu
Creating a list - examples - strona 1

Fragment notatki:

Creating a list struct stag *head, *p; /* two poi nters */ head = /* try to allocate memory for an element */ (struct stag*)malloc(sizeof(struct stag)); if (!head) exit(1); /* out of memory? */ head-x = 12.0; /* fill the element with data */ head-next = NULL; /* mark it as the last element */ /* of the list */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz