C-language String declaration

Source: Internet
Author: User

Re-learning the C-language string declaration
Char *a= "Nihao";
Char a[]= "Nihao";
What's the difference?
The former defines a pointer and points to the string constant "Nihao", which is an array of strings.
The difference is that char * a = "Nihao", the A pointer itself can be varied, such as a = "123", but it is not possible to manipulate string constants, such as a[0] = ' 1 ' is illegal.
Char a[] = "Nihao" means that the character array is initialized to "Nihao", a itself cannot be changed, such as a = "123", but the elements inside a can vary, such as, a[0] = ' 1 ' is legal.

C-language String declaration

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.