在C語言中,可以使用以下幾種方法對字符數組進行賦值:
使用字符串常量直接賦值:
char str[] = "Hello World";
使用strcpy()函數將一個字符串復制到字符數組中:
#include <string.h>
char str[20];
strcpy(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'; // 字符串以空字符結尾
請注意,以上方法中字符數組的大小要足夠大以容納字符串及終止符’\0’。