在C语言中,字符变量的赋值规则如下:
char c = 'A';
char c1 = 'A'; char c2 = c1;
int i = 65; char c = i;
char str[] = "Hello"; char c = str[0]; // 将字符串中的第一个字符'H'赋给字符变量c