tells the browser to use UTF-8 for interpretation. At the same time, when saving the document, the encoding format must also be UTF-8 format."/> tells the browser to use UTF-8 for interpretation. At the same time, when saving the document, the encoding format must also be UTF-8 format.">

Home  >  Article  >  Web Front-end  >  Definition methods and explanation examples of strings in C

Definition methods and explanation examples of strings in C

零下一度
零下一度Original
2017-06-30 16:31:161788browse

There are several forms of defining strings in C: string constant, char array, char pointer

1. String constant

That is: located in a pair of double brackets any character. The characters in double quotes plus the end mark \0 character automatically provided by the compiler are stored in memory as a string

. For example: printf("%s","hello"); //"hello"

If there is no interval between string literals or the interval is a space character, ANSI C will concatenate them. Example:

char greeting[50] = "hello,and" "how are" "you";

Equivalent to:

char greeting[50] = " hello,and how are you";

String constants belong to the static storage class. Static storage means that if a string constant is used in a function, even if the function is called multiple times, only one copy of the string will be stored during the entire running process of the program. The entire quoted content serves as a pointer to the location where the string is stored. This is similar to using the array name as a pointer to the storage location of the array.

2. String array and its initialization

Initialization example:

char m[40] = "hello,world"; //Must be specified when defining a string array Array size (integer constant), when specifying the size, make sure the array size is one larger than the predetermined size, because the compiler will automatically add '\0'.

// Excess element will be initialized to '\ 0'

##char m = {'h', 'e', ​​'l', ' \0'}; //Pay attention to the null character that marks the end. Without it, you will get only a character array instead of a string

3. Use the char pointer to define the string

char * m = "hello,world"; //Automatically add '\0'

Note: At this time, the string pointer m points to a string constant. This constant cannot be modified with *(m+1)='o' , because this string constant cannot be modified in the constant area

4. Arrays and pointers

What is the difference between array form and pointer form?

Array form: char m[40] = "hello,world";

Pointer form: char *m = "hello,world";

Array form:

The compiler will regard the array name m as a synonym for the address of the first element of the array &m[0], where m is an address constant. You can use m+1 to identify the next element in the array, but you cannot use ++m. The increment operator can only be used before variables, not before constants.

m[40] is allocated an array of 40 elements in computer memory (each element corresponds to a character, and there is an additional element corresponding to the terminating null character '\0'). Each element is initialized to the corresponding character.

Usually, the referenced string is stored in the data section of the executable file; when the program is loaded into memory, the string is also loaded into memory, and the referenced string is copied to the array Medium

Pointer form:

The pointer form (*m) will also reserve space for the string in the static storage area. In addition, once the program starts executing, an additional storage location must be reserved for the pointer variable m so that the address of the string can be stored in the pointer variable.

m points to the first character of the string, and ++m can be used to point to the second character. The pointer m is a variable.

The above is the detailed content of Definition methods and explanation examples of strings in C. For more information, please follow other related articles on the PHP Chinese website!

Statement:
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn