Const and pointers

Nasza ocena:

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

Pobierz ten dokument za darmo

Podgląd dokumentu
Const and pointers - strona 1

Fragment notatki:

const and pointers  pointer to const: const char *pc=”asdf” (or: char const *pc=”asdf”)  const pointer: char * const cp=”asdcf”;  const pointer to const: const char * const cpc=”asdcf”;  mistakes: pc[1]='2'; cp++; cpc[1]='b'; cpc--;  it is correct to assign address of non-const to pointer to const ... zobacz całą notatkę



Komentarze użytkowników (0)

Zaloguj się, aby dodać komentarz