在C语言中,可以使用以下几种方法为字符串数组赋值:
#include<stdio.h>
int main() {
char str[] = "Hello, World!";
printf("%s\n", str);
return 0;
}
strcpy()
函数:#include<stdio.h>
#include<string.h>
int main() {
char str[20];
strcpy(str, "Hello, World!");
printf("%s\n", str);
return 0;
}
#include<stdio.h>
int main() {
char str[20] = {0}; // 初始化所有元素为0('\0')
const char *source = "Hello, World!";
for (int i = 0; source[i] != '\0'; i++) {
str[i] = source[i];
}
printf("%s\n", str);
return 0;
}
注意:在使用字符串数组时,确保分配足够的空间来存储字符串。在上面的例子中,我们使用了一个大小为20的字符数组。如果字符串长度超过了数组大小,将会导致缓冲区溢出错误。