6
I am reading a book about C pointers, but as I am new to such a language, still for me the concept of pointers is a bit complex, and when reading the following definition, I came to the question whether an array is a pointer.
Pointer variables
The actual size required is not Too Important so long as we have a way of informing the Compiler that what we want to store is an address. Such a variable is called a Pointer variable.
By definition then, arrays are pointers, right ? In some places, if it says that the array it decays to a pointer, it would be correct to also say this ?
I know little about C, but by the knowledge I have, pointers are not the array itself, but a way to identify it.
– BrnPer