结构体数组初始化

#include<stdio.h>#include<malloc.h>structInfo{charname;};voidmain(){inti;structInfo*d... #include <stdio.h>
#include <malloc.h>

struct Info {
char name;
};
void main()
{
int i;
struct Info *data = malloc(5*sizeof(struct Info));
char namex[3];
for (i=0; i<5;i++)
{
sprintf(namex, "%d", i);
data[i].name = namex;
}
printf("%s\n", data[1].name);
free(data);
}
输出的结果是4 怎样输出结果才能是1啊
为什么输出不是1呢?
我想要的就是结构题数组赋值,怎么办才能在FOR中赋值呢?
展开
 我来答
magic_knife
2008-12-23 · TA获得超过848个赞
知道小有建树答主
回答量:2882
采纳率:0%
帮助的人:985万
展开全部
你这个程序有严重的缓冲区溢出呀,因为循环到4就停止,所以就输出4呀,如果你想输出1可以这样

#include <stdio.h>
#include <malloc.h>

struct Info {
char name;
};
void main()
{
int i;
struct Info *data = malloc(5*sizeof(struct Info));
char namex[3];
for (i=0; i<2;i++)
{
sprintf(namex, "%d", i);
data[i].name = namex;
}
printf("%s\n", data[1].name);
free(data);
}
leo5309
2008-12-23
知道答主
回答量:5
采纳率:0%
帮助的人:0
展开全部
1. namex是一个字符数组,不是单个字符。
2. C语言中,字符数组是不能直接当右值用“=”号赋值,应该使用strcpy,strncpy,memcpy等函数进行赋值。
添加改过的程序

#include <stdio.h>
#include <string.h>
#include <malloc.h>

struct Info {
char name[3];
};
void main()
{
int i;
char namex[3] = "";

struct Info *data = malloc(5*sizeof(struct Info));
memset(data, 0, 5*sizeof(struct Info));

for (i=0; i<5;i++)
{
sprintf(namex, "%d", i);
strcpy(data[i].name, namex);
}
printf("%s\n", data[1].name);
free(data);
}
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
genius_tong
2008-12-23
知道答主
回答量:55
采纳率:0%
帮助的人:0
展开全部
缓冲区溢出
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
领先天下第二
2008-12-23 · TA获得超过756个赞
知道答主
回答量:182
采纳率:0%
帮助的人:0
展开全部
应该编译不过才对啊
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
收起 更多回答(2)
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式