在C語言中,可以通過以下幾種方法對字符數組進行賦值:
#include<stdio.h>
int main() {
char str[] = "Hello, World!";
printf("%s\n", str);
return 0;
}
#include<stdio.h>
int main() {
char str[13];
str[0] = 'H';
str[1] = 'e';
str[2] = 'l';
str[3] = 'l';
str[4] = 'o';
str[5] = ',';
str[6] = ' ';
str[7] = 'W';
str[8] = 'o';
str[9] = 'r';
str[10] = 'l';
str[11] = 'd';
str[12] = '\0'; // 字符串結束標志
printf("%s\n", str);
return 0;
}
strcpy()
函數(需要包含string.h
頭文件):#include<stdio.h>
#include<string.h>
int main() {
char str[13];
strcpy(str, "Hello, World!");
printf("%s\n", str);
return 0;
}
注意:在使用strcpy()
函數時,確保目標數組有足夠的空間來存儲源字符串及其結束標志\0
。否則,可能會導致緩沖區溢出錯誤。