在C语言中,可以使用字符串常量、字符数组、字符串函数等方法来给char数组赋值。
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'; // 添加字符串结束符
#include <string.h>
char str[12];
strcpy(str, "Hello World");
需要注意的是,以上方法在定义字符数组时需要预留足够的空间存储字符串,且最后一个字符必须是字符串结束符’\0’。