Array |
Pointer |
·
Array is a constant
pointer. |
·
Pointer variable can be
changed. |
·
It refers directly to
the elements. |
·
It refers address of the
variable. |
·
Memory allocation is in
sequence. |
·
Memory allocation is
random. |
·
Allocates the memory
space which cannot resize or reassigned. |
·
Allocated memory size
can be resized. |
·
It is a group of
elements. |
·
It is not a group of
elements. It is a single variable. |
·
Array can be initialized
at definition. ·
Example
|
·
Pointer can’t be
initialized at a definition · int *p; |
·
The assembly code of
Array is different than Pointer. |
·The assembly code of Pointer is different than Array |
0 comments:
Post a Comment