Pointers to structures - overview

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Pointers to structures  - overview - strona 1

Fragment notatki:

Pointers to structures typedef struct { int k; double x; } my_str; my_str *p; p = (my_str*)malloc(sizeof(my_str)); if (p==NULL) fprintf(stderr,"Out of memory...\n"); else { (*p).k = 9; /* *p.k is incorrect */ p-k = 10; /* works like (*p).k */ free(p); } ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz