在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’。