在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] ...