inserting elements - overview

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
inserting elements  - overview - strona 1

Fragment notatki:

inserting elements void insert(double a, struct stag **h) { struct stag *p; p = (struct stag*)malloc(sizeof(struct stag)); if (!p) exit(1); p-x = a; p-next = *h; *h = p; } head = NULL; insert(45.6, &head); insert(54.3, &head); insert(1234, &head); ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz