在C語言中,可以使用以下幾種方式初始化字符串:
char str[] = "Hello World";
char *str = "Hello World";
char str[12];
str[0] = 'H';
str[1] = 'e';
str[2] = 'l';
str[3] = 'l';
str[4] = 'o';
str[5] = ' ';
str[6] = 'W';
str[7] = 'o';
str[8] = 'r';
str[9] = 'l';
str[10] = 'd';
str[11] = '\0';
strcpy
函數復制字符串:#include <string.h>
char str[12];
strcpy(str, "Hello World");
需要注意的是,在使用字符指針初始化字符串時,指針指向的字符串常量是只讀的,不能修改其中的內容。而使用字符數組初始化字符串時,可以修改數組中的元素。