Array vs Pointer

 

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


int num[] = { 2, 4, 5}


·     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










SHARE

Milan Tomic

Hi. I’m Designer of Blog Magic. I’m CEO/Founder of ThemeXpose. I’m Creative Art Director, Web Designer, UI/UX Designer, Interaction Designer, Industrial Designer, Web Developer, Business Enthusiast, StartUp Enthusiast, Speaker, Writer and Photographer. Inspired to make things looks better.

  • Image
  • Image
  • Image
  • Image
  • Image
    Blogger Comment
    Facebook Comment

0 comments:

Post a Comment

4.Time Management

                                      Time Management   •        Effective time management in project management involves strategic plann...