在C語言中,字符串?dāng)?shù)組的賦值可以通過以下幾種方式實現(xiàn):
char str[] = "Hello, world!";
#include <string.h>
char str[20];
strcpy(str, "Hello, world!");
char str[20];
str[0] = 'H';
str[1] = 'e';
str[2] = 'l';
str[3] = 'l';
str[4] = 'o';
str[5] = ',';
str[6] = ' ';
str[7] = 'w';
str[8] = 'o';
str[9] = 'r';
str[10] = 'l';
str[11] = 'd';
str[12] = '!';
str[13] = '\0'; // 字符串以'\0'結(jié)尾
需要注意的是,字符串?dāng)?shù)組在聲明時需要預(yù)留足夠的空間來存儲字符串及結(jié)尾的空字符’\0’。