In C++, when using a pointer to multidimensional array like,
int arr[2][5];
int (*p)[5] = arr;
How does a int* is different from the one with size i.e. int (*)[5]?
|
|
|
Pointers are always the same size for any particular machine (virtual, or otherwise). On a 32-bit machine, pointers are 32-bits wide. On a 64-bit machine, they are 64-bits wide. Similar rules apply for more exotic (by today's standards) architectures. |
|||||||||||||||||||||
|
|
The difference is that they're of different types.
It's very likely (but by no means guaranteed) that they'll both have the same size and representation. The difference, as between any two types, is in the operations that can be applied to objects of those types, and the meanings of those operations. In response to the title, "Do pointers have a size?", certainly they do; the |
|||
|
|
|
If you have
Then *p is an int, but *q is an array of five ints, so (*q)[0] is an int. |
|||
|
|
|
Your 'pointer with size' is an array of pointers |
|||||
|
|
During runtime there is no difference. During compilation time it is remembered, whether pointer in question is an array or not, as well as its size, and compiler guarantees that no inappropriate conversions will be made. If I'm not mistaken, inappropriate conversion in this case is conversion of common pointer to array pointer. Also, as others have stated, during runtime pointer sizes are platform-dependent. On PC they have the same size as |
|||||||||
|
|
Pointers have always same size for particular type machine. Pointers have size of 4 bytes on 32 bit machine. It does not matter it is pointing to any data type or array of any data type. Pointer are variable which holds the address of any object. For example:
You will get 4 for both the pointers. |
|||
|
|
|
Yes, a poiner usually have a size of int. you can check the size using the sizeof operator. For example:
|
|||||||||
|