Pointers and arrays

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Pointers and arrays - strona 1

Fragment notatki:

Pointers and arrays • The name of an array is a synonym for the location of the initial element • Example: double x[5]; double *p; p = x; /* the same as p = &(x[0]); */ *p = 17; p++; /* now p points to x[1] */ *p = 19; /* here x[0]=17, x[1]=19 */ ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz