黑马程序员技术交流社区
标题: 2014.11.18学习小结之结构体数组 [打印本页]
作者: 736010695 时间: 2014-11-18 21:47
标题: 2014.11.18学习小结之结构体数组
本帖最后由 736010695 于 2014-11-21 13:41 编辑
//定义结构体数组
#include <stdio.h>
int main()
{
//定义结构体变量类型
struct rankrecord
{
int no;
char *name;
int score;
};
//定义结构体变量数组
struct rankrecord records[] =
{
{1, "jimmy", 500},
{2, "tom", 400},
{3, "cook",300}
};
//便利结构体数组里的元素
for(int i = 0, i < 3, i++)
{
printf("%d, %s, %d\n", records.no, records.name, records.score);
}
return 0;
}
作者: 诺微_ 时间: 2014-11-18 22:15
写错了吧 最后records.no应该为records[i].no
作者: 736010695 时间: 2014-11-19 08:20
是我写错了,谢谢指点
作者: 诺微_ 时间: 2014-11-19 21:27
嘿嘿 谈不上指点 只是碰巧看到了!加油
欢迎光临 黑马程序员技术交流社区 (http://bbs.itheima.com/) |
黑马程序员IT技术论坛 X3.2 |