TOC | Prev | Next

const declarations

When unwinding const declarations, read from right to left.

const char *p;
char * const p;

In this case, it is p itself, not its contents, that are const.

TOC | Prev | Next