|
Stefan Istrate <stefan.istrate@gmail.com> writes:
I know that "int *p[100]" means 100 pointers to int. But what means
"int (*p)[100]"?
tpl> c++decl explain 'int *p[100]'
declare p as array 100 of pointer to int
tpl> c++decl explain 'int (*p)[100]'
declare p as pointer to array 100 of int
.
|