C语⾔结构体成员数组赋值的问题
C语⾔只有在定义字符数组的时候才能⽤“=”来初始化变量,其它情况下是不能直接⽤“=”来为字符数组赋值的,之所以不能赋值成功,是因为数组名是⼀个指针常量,指向固定地址,再对其赋值即改变其指向的地址,作为常量⾃然不同意。
要为字符数组赋值可以⽤string.h头⽂件中的strcpy函数来完成。
例如:
char a[10] = "123"; /*正确,在定义的时候初始化*/
char a[10];
a = "123"; /*错误,不能⽤“=”直接为字符数组赋值*/
strcpy(a, "123"); /*正确,使⽤strcpy函数复制字符串*/
所以要对game[0][0].cpart赋值应该⽤strcpy(game[0][0].cpart, "123");才对。
注意要使⽤strcpy函数要⽤#include <string.h>包含string.h头⽂件。
给C语⾔结构体中的char数组赋值有两种⽅式:
1、在声明结构体变量时赋值:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
struct stu{
int x;
char name[10];
};
int main(void){
struct stu s={8,"123"};//这样初始化
printf("%d %s\n",s.x,s.name);
return 0;
}
2、向数组直接拷贝字符串:
//#include "stdafx.h"//If the vc++6.0, with this line.
#include "stdio.h"
#include "string.h"
struct stu{
int x;
char name[10];
};
int main(void){
struct stu s;
strcpy(s.name,"abcd");//向name拷贝字符串
c语言struct头文件s.x=128;
printf("%d %s\n",s.x,s.name);
return 0;
}

版权声明:本站内容均来自互联网,仅供演示用,请勿用于商业和其他非法用途。如果侵犯了您的权益请与我们联系QQ:729038198,我们将在24小时内删除。