Comparison between pointers and Arrays

Source: Internet
Author: User

(1) arrays are either created in static storage areas (such as global arrays) or on stacks. The array name corresponds to (rather than pointing to) a piece of memory, and its address and capacity remain unchanged during the lifetime, only the content of the array can be changed.
(2) A pointer can point to any type of memory block at any time. Its feature is "variable". Therefore, we often use pointers to operate dynamic memory. Pointers are far more flexible than arrays, but they are more dangerous.
# Include <iostream. h>

Void main ()

{

Char A [] = "hello ";

A [0] = 'H ';

// * A ++ = 'H'; // No. A is a pointer constant (which can be understood as follows)

Cout <A <Endl;

Char * P = "world ";

// P [0] = 'W'; // No. the pointer P points to the constant string "world" (in the static storage area, the content is World/0)

Cout <p <Endl;

}


}

---- Excerpt from

 

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.