Is an array name a pointer?
An array is an array and a pointer is a pointer, but in most cases array names are converted to pointers. A term often used is that they decay to pointers. Here is an array: int a[7]; a contains space for seven integers, and you can put a value in one of them with an … Read more